$j12(document).ready(function(){
	$j12("#hero > ul").tabs();
	$j12("#hero-thumbs").tabs('rotate', 5000);
	
	$j12("#hero").hover(
		function () {
			$j12("#hero-thumbs").tabs('rotate', null);
		}, 
		function () {
			$j12("#hero-thumbs").tabs('rotate', 5000);
		}
	);

	
	$j12("#hero-thumbs li").hover(
		function () {
			$j12("#hero-thumbs").tabs('select', this.id);
		}, 
		function () {
	//		$j12("#hero-thumbs").tabs('rotate', 5000);
		}
	);

});

