 $(document).ready(function(){
	/*** Hero ***/
	$("#hero").tabs({fx:{opacity: "toggle",duration:15}}).tabs("rotate", 12000, true);
	$("#hero .ui-tabs-nav").hover(
		function() {
			$("#hero").tabs("rotate",0,true);
		},
		function() {
			$("#hero").tabs("rotate",12000,true);
		}
	);
 });
