/*
_,     .  __   ,__,   _   ,    ,_   _  __,   //  ,____,      ,____,   _,_-/- .  _,_ ,__,      ,_    .  __  -/-      ,_   _   ,  
 (_/__/__(_/__/ / (__(/__/_)__/ (__(/_(_/(__(/__/ / / (_   _/ / / (__(_/_/__/__(_/_/ / (_    _/_)__/__(_,__/__(_/__/ (__(/__/_)_
         _/_                                                                                 /                                  
        (/  
*/
$(function() {
                var d=300;
                $('#boxmenu a').each(function(){
                    $(this).stop().animate({
                        'marginTop':'-62px'
                    },d+=150);
                });

                $('#boxmenu > li').hover(
                function () {
                    $('a',$(this)).stop().animate({
                        'marginTop':'-2px'
                    },200);
                },
                function () {
                    $('a',$(this)).stop().animate({
                        'marginTop':'-62px'
                    },200);
                }
            );
});