var iCarousel = null;
function carousel_callback( carousel, state) {
    // BWA-HA...I have the carousel now....FEEL THE POWER!
	iCarousel = carousel;
   }

function CarousselInit() {
    if ($(".TIFN_caroussel .carousel").length > 0) {
        jQuery(".TIFN_caroussel .carousel").jcarousel({
            scroll: 1,
            wrap: 'circular',
            initCallback: carousel_callback,
            auto: 8
        });
        
        //var t=setTimeout('removeItem()', 3000);  
    } else {
    if (iCarousel!=null) {
    	iCarousel.stopAuto();
    	//iCarousel.reset();
    	//iCarousel.reload();
    	//iCarousel==null;
    	}	
    }
}
