$(document).ready(function(){
	$(".thumb-slider").jCarouselLite({
					scroll: 1,
					visible: 3,
			        btnNext: '.next',
			        btnPrev: '.prev',
					circular: false,
					vertical: true
				});

	$(".full img").each(function(){
		var height = $(this).height();
		var yoffset = height/-2;
		var width = $(this).width();
		var xoffset = width/-2;
		
		$(this).css("margin-top",yoffset+"px");
		$(this).css("margin-left",xoffset+"px");
		
		$(this).hide();
		$(this).parent().fancybox({
								overlayColor: "#131719"
								});
		});
		
		$(".details li").hide();
		
		$(".full li:first-child img, .details ul li:first-child").show();
		
		$(".thumbs li:first-child a").addClass("current");
		
		$(".thumbs a").click(function(){
				$(".thumbs .current").removeClass("current");
				$(this).addClass("current");
				
				$(".full img, .details li").fadeOut()
				$($(this).attr("href")+" img").addClass("current").fadeIn();
				$($(this).attr("href")+"-details").fadeIn();
			});
	
});

