$(function() {
   $('#menu a:not(.active,.subactive)').mouseover(function(){
       $(this).stop().animate({
           marginLeft : '0'
       }, 'fast');
       }).mouseout(function(){
           $(this).stop().animate({
            marginLeft : '-15'
       }, 'fast');
    });
});
