﻿$(function() {
	//$('img[@src$=.png]').ifixpng(); 
	
	/* EASING **/
	/* http://gmarwaha.com/jquery/jcarousellite/#demo */
	
    $(".sliderImages").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		visible: 1,
		vertical: false,
		auto:14000,
		easing: "easeInOutSine",
		speed: 1000,
   		afterEnd: function(a) {
		}
		
    });
	
	$(".sliderTextHolder").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		vertical: false,
		visible: 1,
		auto:14000,
		easing: "easeInOutSine",
		speed: 1000,
   		afterEnd: function(a) {
			//alert("Before animation starts:" + a['speed']);
		}
		
    });
	

	 
});

