// Modified and taken from ui_demos.js
$(function(){
	// Menu Dialog			
	$('#menuDialog').dialog({
		modal: true,
		overlay: {
			opacity: 0.7,
			background: "black"
			},
		draggable: false,
		resizable: false,
		autoOpen: false,
		width: 350,
		buttons: false
	});
	// Dialog Link
	$('#menuDialog_link').click(function(){
		$('#menuDialog').dialog('open');
		return false;
	});
	//hover states on the static widgets
	$('#menuDialog_link, ul#icons li').hover(
		function() { $(this).removeClass('ui-state-hover'); }, 
		function() { $(this).removeClass('ui-state-hover'); }
	);
});