//************************************************************
$(function(){  
	$("#trigger").switchable("#panel > div > img", {  
		triggerType: "click",  
		effect: "scroll",  
		steps: 1,  
		visible: 3
	}).autoplay(3).carousel().mousewheel();
	var api = $("#trigger").switchable();  
	$("#next").click(function(){  
		api.next();  
	});  
	$("#prev").click(function(){  
		api.prev();  
	});  
});  
//************************************************************
$(function(){
	$("#panel img").css('cursor',"pointer");
	$("#panel img").click(
		function(){
			$(".pic img").attr("src",this.src);
			$(".pic div").html(this.alt);
		}
	)
})

