$(function() {
	$(function(){
		// Accordion
		$("#accordion").accordion({ header: "h3", active: false, collapsible: true, autoHeight: false });
		$("#sub_accordian").accordion({ header: "h4", active: false, collapsible: true, autoHeight: false });
		
		//hover states on the static widgets
		$('#dialog_link, ul#icons li').hover(
			function() { $(this).addClass('ui-state-hover'); }, 
			function() { $(this).removeClass('ui-state-hover'); }
		);
		
	});
})