$(function() {
	var d=300;
    	$('#topMenu a').each(function(){
        	$(this).stop().animate({
            	'marginTop':'-20px'
            },d+=150);
        });

        $('#topMenu > li').hover(
        	function () {
            	$('a',$(this)).stop().animate({
                	'marginTop':'-5px'
                },200);
            },
            function () {
            	$('a',$(this)).stop().animate({
                	'marginTop':'-20px'
                },200);
            }
        );
});

