 jQuery.noConflict();

jQuery(function() {


	jQuery("#menuList li a").mouseover(function() {
	var sender = jQuery(this);
		

		jQuery(".subNav").hide();
		var panelId = "#nav_" + sender.attr("id").substring(5);
		jQuery(panelId).show();
	});
});
