$(document).ready(function(){
    $(".menu_head").hover(function() {

        $(this).parent().find(".menu_body").slideDown('fast').show();

        $(this).parent().hover(function() {
            }, function(){
            $(this).parent().find(".menu_body").slideUp('slow');
        });

        }).hover(function() {
            $(this).css({color:"#F4AE34"});
        }, function(){
            $(this).css({color:"#000"});
    });
	
	
	
    $(".menu_head_hg").hover(function() {

        $(this).parent().find(".menu_body_hg").slideDown('fast').show();

        $(this).parent().hover(function() {
            }, function(){
            $(this).parent().find(".menu_body_hg").slideUp('slow');
        });

        }).hover(function() {
            $(this).css({color:"#F4AE34"});
        }, function(){
            $(this).css({color:"#000"});
    });


});


