$(function() {
	//$('img[@src$=.png]').ifixpng(); 
	
	/* EASING **/
	/* http://gmarwaha.com/jquery/jcarousellite/#demo */
	
    $(".sliderImages").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		visible: 1,
		easing: "easeinout", /* options: bounceout, easeinout, backout */
		auto: 18000,
		speed: 600
    });
	
	$(".sliderTextHolder").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		vertical: true,
		visible: 1,
		easing: "easeinout", /* options: bounceout, easeinout, backout */
	 	auto: 18000,
		speed: 600
    });
	
	
	 
});

