
var $j = jQuery.noConflict();


$j(function(){

				// Accordion
				$j("#accordion").accordion({ 
					header: "h3",
					event: 'mouseover'
				});
				
				//hover states on the static widgets
				$j('#dialog_link, ul#icons li').hover(
					function() { $j(this).addClass('ui-state-hover'); }, 
					function() { $j(this).removeClass('ui-state-hover'); }
				);
				
			});
