$(document).ready(function(){

	// Menu
	
	$('#menu ul li').hover(function(){
		$(this).children(".dropdown").show();
	},function(){
		$(this).children(".dropdown").hide();
	});
	$('#menu ul li').mouseenter(function(){
		$(this).children(".dropdown2").show();
	}).mouseleave(function(){
		$(this).children(".dropdown2").hide();
	});
	$('#menu ul li').mouseenter(function(){
		$(this).children(".dropdown3").show();
	}).mouseleave(function(){
		$(this).children(".dropdown3").hide();
	});
	$('#menu ul li').mouseenter(function(){
		$(this).children(".dropdownNews").show();
	}).mouseleave(function(){
		$(this).children(".dropdownNews").hide();
	});
		$('#menu ul li').mouseenter(function(){
		$(this).children(".dropdownDemo").show();
	}).mouseleave(function(){
		$(this).children(".dropdownDemo").hide();
	});
		$('#menu ul li').mouseenter(function(){
		$(this).children(".dropdownTraining").show();
	}).mouseleave(function(){
		$(this).children(".dropdownTraining").hide();
	});
		$('#menu ul li').mouseenter(function(){
		$(this).children(".dropdown10").show();
	}).mouseleave(function(){
		$(this).children(".dropdown10").hide();
	});
	
});
