/**
 * Handles the main teasers on the start page.
 * @requires jQuery
 */
$(function() {
	/* Initialize the teasers and set a loop/rotation interval */
	//$('#main-teasers ul.ui-tabs').appendTo("#main-teasers").tabs({event: 'mouseover', fxFade: true, fxSpeed: 'fast' }).tabsRotate(4000);
	/* Set destinations for each tab (this can't be done using modifications of the href value) */
	// $("ul.ui-tabs li").each(function(){
	// 	$(this).find("a").click(function(){
	// 		document.location.href = "solutions.html";
	// 		return false;
	// 	});
	// })
	
	$('#main-teasers').multiteaser();
	
});
