
			$(function(){

				// Accordion
				$("#accordion").accordion({ 
					header: "h3", active: false, collapsible: true
					});
				
				//Click to an href link versus opening the accordion
				$("div#side .link").click(function() {
	  				window.location=$(this).find("a").attr("href"); 
				//Hide the Submenus
					var checkElement = $(this).next();
						if((checkElement.is('ul')) && (checkElement.is(':visible')))
					return 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'); }
				);		
		
			});

