$(document).ready(function(){	

$(".productBanner").jCarouselLite({
	    btnNext: ".down",
	    btnPrev: ".up",
	    vertical: true,
	    circular: false
	});
    $(".productBanner a").click(function(event){    	
		$("#ProductPhoto .big").stop().hide(); 
    	$("#ProductPhoto .big").attr('src',$(event.currentTarget).attr('href')).show();   
//    $(".productBanner a").click(function(event){    	
//		$("#ProductPhoto .big").stop().fadeOut(300, function() {
//    		$(this).attr('src',$(event.currentTarget).attr('href')).fadeIn("normal");   
//		});
		return false;
	});
});
