$(document).ready(function() {	
	if ($('#showcase')){ 
		$('#showcase').showcase({ animation: { type: "fade" }});
	}
	
	if($(".jCarouselLite")){
		$(".jCarouselLite").jCarouselLite({
        	btnNext: ".next",
        	btnPrev: ".prev",
        	visible: 4
    	});
    	
    	$('.jCarouselLite img').click(function() {
  			imgSrc = this.src.split("/");
  			imgSrc = imgSrc[imgSrc.length-1];
  			imgSrc = imgSrc.split(".");
  			imgName = "#"+(imgSrc[imgSrc.length-2])+(imgSrc[imgSrc.length-1]);
  			
			$("#big a").hide();
  			$(imgName).show();
		});
	}
	
	if($("#big")){
		$("#big a").lightBox();
		$("#big a").hide();
		$("#big a:first-child").show();
	}
	
});
