jQuery().ready(function(){
	 
	$("#showcaseImages").jCarouselLite({
     btnNext: ".next",
     btnPrev: ".prev",
	 easing:"easeinout",
	 speed:2000,
	 intervalTime:5000,
	 auto: true,
	 visible:1
    });
    
    $('#showcaseNav a').fadeTo("fast",100);
	
	$('#showcaseNav a').hover(function() {
		$(this).fadeTo("fast",1);
		},
		function () {
        $(this).fadeTo("fast",100);
   	});
	
	$('#showcaseNav2 a').fadeTo("fast",100);
	
	$('#showcaseNav2 a').hover(function() {
		$(this).fadeTo("fast",1);
		},
		function () {
        $(this).fadeTo("fast",100);
   	});
});
