$(document).ready(function() {

    $('.button').hover(function() {
         if($(this).find('ul.submenu').length>0) {
            var pos=$(this).offset();
            $(this).find('ul.submenu').css("left",pos.left);
            $(this).find('ul.submenu').stop(true, true);
            $(this).find('ul.submenu').slideDown();
         }
    }, function() {
        $(this).find('ul').slideUp('fast');
    });
});
