jQuery.noConflict();
jQuery(document).ready(function() {
  
	jQuery(".table-monoblocco tbody tr:odd").addClass("disparitable");

	jQuery(".tooltipactive ul li").hover(function(){
		jQuery(".tooltip-container",this).stop(true,true,true).fadeToggle(90, 'linear');
	});

	if (jQuery("#accordion").length>0) {
		jQuery("#accordion").accordion({
			header: "h3",
			autoHeight: false,
			collapsible: true,
			active: false
		});
	}

	//hover states on the static widgets
	jQuery('#dialog_link, ul#icons li').hover(
		function() { jQuery(this).addClass('ui-state-hover'); },
		function() { jQuery(this).removeClass('ui-state-hover'); }
	);

});
