jQuery(document).ready(function(){
	jQuery('#menu .menu_item').hover(function() {
			jQuery(this).children('.children').css({ display: 'block'});
		}, function() {
			jQuery(this).children('.children').css({ display: 'none'});
	});
});
