jQuery().ready(function(){

	jQuery('#showcaseInfo .tPorfolio').each(function(){
		jQuery(this).appendTo(jQuery('<li></li>').appendTo('#showcaseTitles ul'));
	});

	jqtemp("#showcaseTitles").jCarouselLite({
     btnNext: ".next",
     btnPrev: ".prev",
	 easing:"easeinout",
	 speed:800,
	 visible:1
    });
	 
	jqtemp("#showcaseInfo").jCarouselLite({
     btnNext: ".next",
     btnPrev: ".prev",
	 easing:"easeinout",
	 speed:800,
	 visible:1,
	 vertical:true
    });
	 
	jqtemp("#showcaseImages").jCarouselLite({
     btnNext: ".next",
     btnPrev: ".prev",
	 easing:"easeinout",
	 speed:800,
	 visible:1
    });
    
    jqtemp("#testimonials").jCarouselLite({
     btnNext: ".tNext",
     btnPrev: ".tPrev",
	 easing:"easeinout",
	 speed:400,
	 visible:1,
	 vertical:true
    });
	 
	 
	 jqtemp('#showcaseNav a').fadeTo("fast",0.80);
	 jqtemp('#showcaseNav a').hover(function() {
		jqtemp(this).fadeTo("fast",1);
		},
		function () {
        jqtemp(this).fadeTo("fast",0.80);
      	});
      	
      	
      jqtemp('#tNav a').fadeTo("fast",0.60);
	 jqtemp('#tNav a').hover(function() {
		jqtemp(this).fadeTo("fast",1);
		},
		function () {
        jqtemp(this).fadeTo("fast",0.60);
      	});
		//jqtemp("a.fancyLink").fancybox({ 'zoomSpeedIn': 175, 'zoomSpeedOut': 175 }); 
	});