$(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', '#E10008');
        $(this).children("ul").css('position', 'absolute').css('display', 'block').css('left', '180px').css('top', '0px');
    }, function(){
        $(this).children("a").css('background-color', '#F40009');
        $(this).children("ul").css('display', 'none');
    });
});