/*********************
- jQuery multi-level drop down menu for the Media RapidWeaver theme by Themeflood.
- Menu code developed by Will Woodgate: http://www.willwoodgate.com
- Last updated 6th May 2010
*********************/
var $ddm = jQuery.noConflict();
function systemseven(){

$ddm("#nav>ul>li>ul").hide();

$ddm("#nav li").hover(function(){
		$ddm(this).find('ul:first').css({visibility: "visible",display: "none"}).fadeIn(500);
		},function(){
		$ddm(this).find('ul:first').fadeOut(500);
		});

}

$ddm(function(){
	systemseven();
});
