$(function() {
	//$('img[@src$=.png]').ifixpng(); 
	
	/* EASING **/
	/* http://gmarwaha.com/jquery/jcarousellite/#demo */
	
    $(".sliderImages").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		visible: 1,
		vertical: true,
		easing: "easeInOutExpo",
		speed: 500
    });
	
	$(".sliderTextHolder").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		vertical: false,
		visible: 1,
		easing: "easeInOutQuint",
	 	speed: 500
    });
	
	    $(".sliderImages2").jCarouselLite({
        btnNext: ".next2",
        btnPrev: ".prev2",
		visible: 1,
		 vertical: true,
		easing: "easeInOutExpo",
		speed: 500
    });
	
	$(".sliderTextHolder2").jCarouselLite({
        btnNext: ".next2",
        btnPrev: ".prev2",
		vertical: false,
		visible: 1,
		easing: "easeInOutQuint",
	 	speed: 500
    });
	
<!--	for thumb nail opacity-->
	
	$(function(){
	   $('.thumb').css({opacity:0.8}).hover(function(){
		  $(this).animate({opacity: 1}, 'fast');
		  
	   },
	   function(){
		  $(this).animate({opacity: 0.8},'slow');
	   });
	});
	 
});
