
jQuery(function(){
	/*
	//Drop down menu animation setup
	jQuery("#leftNav .level2 li:has(ul) > a").addClass("slider");
	
	//Drop down menu animation event handler
	jQuery("#leftNav .level2 li:has(ul) > a.slider").toggle(function(){
		jQuery(this).siblings("ul").slideToggle();
	},
	function(){
		jQuery(this).siblings("ul").slideToggle();
	});
	//When using javascript menus disable the parent links
	jQuery("#siteNav .level1 li:has(.level2) > a").click(function(){
		return false;
	});
	 */
	
	//Drop down menu ie 6 compatibility menu/hover effect
	if(jQuery.browser.msie && jQuery.browser.version == "6.0")
	{
		jQuery("#siteNav .level1 > li:has(ul)").hover(function(){
			jQuery(this).children("ul").show();
		},
		function(){
			jQuery(this).children("ul").hide();
		});
	}
	
	//shortcut for implementing jumpNav
	jQuery(".jumpMenu option").click(function(){
		window.location = jQuery(this).val();
	});
	
	//ezPlug quickfixes
	jQuery("#breadInfo a:last").css({ textDecoration: 'none' });
	
	//Swap out location for organization
	jQuery("#plug_directory .title.dLocation").html("Organization");
	
	str = jQuery("#plugin_directory_detail .location").text();
	jQuery("#plugin_directory_detail .location").text(str.replace("Location:","Organization:"));
	
	jQuery("#plugin_directory_detail .groups").insertAfter(jQuery("#plugin_directory_detail .location"));
});