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