$(document).ready(function(){
	$('#main_menu .drawerBox').hover(
		function () {
			$(this).children('.drawer').slideDown();
		}, 
		function () {
			$(this).children('.drawer').slideUp();
		});
});