$(document).ready(function(){  
	$("#guiAktuellesIndexGlobal").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000);  
	$('#guiWrapperContentGlobalIndex960').hover(function() {
		clearTimeout($(this).data('timeout'));
		$('#guiAktuellesIndexGlobal').tabs('rotate', 0, false);
	}, function() {
		var t = setTimeout(function() {
			$('#guiAktuellesIndexGlobal').tabs({ fx: {opacity: 'toggle'}}).tabs('rotate', 5000);
		}, 2000);
		$(this).data('timeout', t);
	});
	$('#standort').click(function() { // bind click event to link
		$('#guiAktuellesIndexGlobal').tabs('select', 3); // switch to third tab
		return false;
	});
});
