$(function(){
	//hover states on the static widgets
	$('.highlightonmouseover,.menulink,.navilink,._box').hover(
		function() { $(this).addClass('ui-state-hover'); }, 
		function() { $(this).removeClass('ui-state-hover'); }
	);
	
});