$(function(){

	// Accordion
	$("#accordion").accordion({ 
		event: "mouseover",
		header: "h3",
		autoHeight: true,
		//icons: false,
		icon: { 'header': '', 'headerSelected': '' }
	});
	
	//hover states on the static widgets
	$('#dialog_link, ul#icons li').hover(
		function() { $(this).addClass('ui-state-hover'); }, 
		function() { $(this).removeClass('ui-state-hover'); }
	);
	
	$("#impressum").dialog({ 
		draggable: false, 
		resizable: false,
		autoOpen: false,
		width: 600,
		height: 400
	});
	
	$("#lnk-impressum").click(function(e) {
		$("#impressum").dialog('open');
		e.preventDefault();
	});
				
});

