$(document).ready(function($){
	$("#menu_container .menu_item").hover(
		function(){
			$(this).children("ul").fadeIn(50);},
		function(){
			$(this).children("ul").fadeOut(50);
		}
	); //end hover
}) //end document.ready


