$(document).ready(function(){
    $(".main_menu_item").hover(function(){
        $(this).children("ul").css('position', 'absolute').css('left', '0px').css('top', '26px').css('display', 'block');
    }, function(){
        $(this).children("ul").css('display', 'none');
    })
    $(".submenu > li").hover(function(){
        $(this).children("a").css('background-color', '#d2242a');
        $(this).children("ul").css('position', 'absolute').css('display', 'block').css('left', '180px').css('top', '0px');
    }, function(){
        $(this).children("a").css('background-color', '#de1c21');
        $(this).children("ul").css('display', 'none');
    });
});
