/*********************
- 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 30th January 2010

- modified a wee bit by Andy Johnstone http://www.focusphotos.com
- 4th May 2010
*********************/
var $ddm = jQuery.noConflict();
function mainmenu(){

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

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

 $ddm(document).ready(function(){
	mainmenu();
});