var t
var last_picture = 1;
var next_picture = 2;

function runSlideshow(){
	$("#pic_" + last_picture).fadeOut('slow');
	$("#pic_" + next_picture).fadeIn('slow');




	$("#pic_" + last_picture).hide();

	next_picture++;

	last_picture = next_picture -1;


	if(next_picture > 4){
		next_picture = 1;
	}




	t=setTimeout("runSlideshow()",5000);


}

$(document).ready( function(){

	if($(".product_box")){
		t=setTimeout("runSlideshow()",5000);

	}
	$("#see_label").click( function(){

		$(".center_info").hide();
		$("#product_label").show();
		return false;
	});

});
