$(document).ready(function(){


		// menu bewegung bei mouseover
        $(".right ul li a").hover(function(){
            $(this).stop().animate({ paddingLeft: '20px' }, 500);
        }, function() {
                if($(this).hasClass('passive')) {
            	// unterscheidung ob bereits aktiv oder nich
                $(this).stop().animate({paddingLeft: '0px'}, 500);
            } else {
                $(this).stop().animate({paddingLeft: '20px'}, 500);
            }
        });

});
