$(document).ready(function(){



	$("#m11").hide();
	$("#m22").hide();
	
	$("#m1").mouseover(function()
	{
			$("#m11").css({"width":"145px","left":"10px","top":"30px","z-index": "200"});
			$("#m11").show();
	}
	);
	
	$("#m11").mouseout(function()
	{
			$("#m11").hide();
	}
	);
	
	$("#m11 a").mouseover(
		function()
		{
			$("#m11").show();
		}
	);





	$("#m2").mouseover(function()
	{
			$("#m22").css({"width":"145px","left":"250px","top":"30px","z-index": "200"});
			$("#m22").show();
	}
	);
	
	$("#m22").mouseout(function()
	{
			$("#m22").hide();
	}
	);
	
	$("#m22 a").mouseover(
		function()
		{
			$("#m22").show();
		}
	);



	
	$(".m2").mouseover(
		function()
		{
			$("#m11").hide();
			$("#m22").hide();	
		}
	);

});
