

jQuery(document).ready(function($){
	$("#nav").dropmenu({});
});

if ($("#home").length > 0) {
	// Accordion
	$("#accordion").accordion({ 
					autoHeight: false,
					active: false,
					event: "mouseover",
		header: "h4" });
	
	//hover states on the static widgets
	$('#dialog_link, ul#icons li').hover(
		function() { $(this).addClass('ui-state-hover'); }, 
		function() { $(this).removeClass('ui-state-hover'); }
	);
	
	$(function() {
	    $("#represent img")
	        .mouseover(function() { 
	            var src = $(this).attr("src").match(/[^\.]+/) + "-over.png";
	            $(this).attr("src", src);
	        })
	        .mouseout(function() {
	            var src = $(this).attr("src").replace("-over", "");
	            $(this).attr("src", src);
	        });
	});
}
	
	
	
