	/* 
 Homepage Featured Carousel
*/
BI.featuredCarousel = {
	init: function() {
		$("#slideshow").cycle({ 
			fx:     "scrollHorz", 
			speed:   400,
			timeout: 7000,
			pause:   1,
			cleartype: true,
			cleartypeNoBg: true,
			next:   'a.next',
			prev:   'a.prev',
			after: function(curr,next,opts) {
				$("span.counter").text(opts.currSlide + 1);
			}
		});
	}
}

/* 
 Homepage Our Clients
*/
BI.ourClients = {
	init: function() {
		var ourClients = $("#our-clients");
		//ourClients.equalHeights(100, 200);
		
		$("#our-clients-slideshow").cycle({ 
			fx:     "fade", 
			timeout: 5000,
			speed:   400,
			cleartype: true,
			cleartypeNoBg: true
		});
	}
}

/* init */
jQuery(document).ready(function() { 
	BI.featuredCarousel.init();
	BI.ourClients.init();
	
		
	    
}); 

