// JavaScript Document fot the top navigatin function 
function mainmenu(){
$(" #topNav ul").css({display: "none"}); // Opera Fix
$(" #topNav li").hover(function(){
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(400);
		$(this).css({fontFamily: "Tahoma, Geneva, sans-serif"});
		},function(){
		$(this).find('ul:first').css({visibility: "hidden"});
		});
}

 $(document).ready(function(){
	mainmenu();
});
 
 
// function is for the dart game in the STIHL section. It opens the new window for the game 
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
