$(function() {	//initThemeswitcher();	//initTabs();	initRotator();	initButtons();	initStoryLinks();});function initStoryLinks() {	$("div.headline, div.excerpt").hover(		function(){			$(this).addClass('hover');		},		function(){			$(this).removeClass('hover');		}	);		$("div.headline:not(div.search-results div.headline), div.excerpt").click(		function() {			window.location.href = $(this).find("a.storylink").attr('href');		}	);}
function initButtons() {	$("input[type=button]").hover(	function(){		$(this).addClass("ui-state-hover");	},	function(){		$(this).removeClass("ui-state-hover");	});}function initTabs() {	$("#top-stories").tabs();}function initThemeswitcher() {	$("#themewidget").themeswitcher({		buttonPreText:'Skin :: ',		loadTheme:'South Street',		closeOnSelect:false	});}function initRotator() {	$("#rotator div.slides").cycle({		fx:			'scrollLeft',		speed:		'fast',		timeout:	8000	});		$("#rotator").hover(		function(){			$(this).cycle('pause');		},		function(){			$(this).cycle('resume');		}	);}