src = ["slideshow/workshop"+products_id+"/001.jpg","slideshow/workshop"+products_id+"/002.jpg","slideshow/workshop"+products_id+"/003.jpg","slideshow/workshop"+products_id+"/004.jpg","slideshow/workshop"+products_id+"/005.jpg"];

var i=0;

function changeimage(towhat,alter_text){
	if (document.images){
		$("#slideshow2").fadeOut(function() {
			document.images.targetimage.src=towhat.src;
			document.images.targetimage.alt=alter_text;
		});
		$("#slideshow2").fadeIn();
	}
}

var myimages=new Array();

function preloadimages(){
	for (i=0;i<=src.length;i++){
		myimages[i]=new Image();
		myimages[i].src=src[i];
	}
}


preloadimages();


$(document).ready(function()  
	{  
	$(".tab_content").hide();  
	$("ul.tabs li:first").addClass("active").show();  
	$(".tab_content:first").show();  
	
	$("ul.tabs li").click(function()  
	{  
		$("ul.tabs li").removeClass("active");  
		$(this).addClass("active");  
		$(".tab_content").hide();  
		
		var activeTab = $(this).find("a").attr("href");  
		$(activeTab).fadeIn();  
		return false;  
	});  
});
