$(function() {
	//$('img[@src$=.png]').ifixpng(); 
	
	/* EASING **/
	/* http://gmarwaha.com/jquery/jcarousellite/#demo */
	
    $(".sliderImages").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		visible: 1,
		vertical: true,
        auto: 3500,
        speed: 1750,
		easing: "easeOutQuint"
    });
	$(".sliderText").jCarouselLite({
        btnNext: ".nextText",
        btnPrev: ".prevText",
		visible: 1, 
        auto: 5000,
        speed: 1750,
		easing: "easeOutQuint"
    });

});

