// jQuery slideshow with carousel

$(document).ready(function(){
	$("#thumbnail li a").click(function(){
		$("#large img").hide().attr({"src": $(this).attr("href"), "title": $("> img", this).attr("title")});
		//$("#large h2").html($("> img", this).attr("title"));
		return false;
	});
	$("#large>img").load(function(){$("#large>img:hidden").fadeIn("slow")});
	
	$(".default").jCarouselLite({
            btnNext: ".next",
            btnPrev: ".prev",
			scroll: 5,
			visible: 5,
			speed: 900
        });
    

});
