<!-- header images slide show code starts here -->

$(document).ready(function(){	
		$("#header_img").easySlider({
			auto: true, 
			continuous: true
		});
	});

<!-- header images slide show code ends here -->


<!-- testimonials slider code starts here -->

$(document).ready(function(){
	$('#htesti_box_mid .testi_txt');
	setInterval(function(){
		$('#htesti_box_mid .testi_txt').filter(':visible').fadeOut(6000,function(){
			if($(this).next('li.testi_txt').size()){
				$(this).next().fadeIn(1000);
			}
			else{
				$('#htesti_box_mid .testi_txt').eq(0).fadeIn(1000);
			}
		});
	},1000);	
});	

<!-- testimonials slider code ends here -->


<!-- tabs navigation code starts here -->

$(document).ready(function() {

	//When page loads...
	$(".tab_content").hide(); //Hide all content
	$("ul.tabs li:first").addClass("active").show(); //Activate first tab
	$(".tab_content:first").show(); //Show first tab content

	//On Click Event
	$("ul.tabs li").click(function() {

		$("ul.tabs li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".tab_content").hide(); //Hide all tab content

		var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
		$(activeTab).fadeIn(); //Fade in the active ID content
		return false;
	});

});

<!-- tabs navigation code ends here -->


<!-- poertfolio code starts here -->

var slideimages=new Array()
var slidelinks=new Array()
function slideshowimages(){
for (i=0;i<slideshowimages.arguments.length;i++){
slideimages[i]=new Image()
slideimages[i].src=slideshowimages.arguments[i]
}
}

function slideshowlinks(){
for (i=0;i<slideshowlinks.arguments.length;i++)
slidelinks[i]=slideshowlinks.arguments[i]
}

function gotoshow(){
if (!window.winslide||winslide.closed)
winslide=window.open(slidelinks[whichlink])
else
winslide.location=slidelinks[whichlink]
winslide.focus()
}

<!-- portfolio code ends here -->
