/*** MENU ***/         

$(function() {
			
			var d=300;
                $('#navigation').each(function(){
                $(this).stop().animate({'paddingBottom':'0'},d+=150);
				});
   
                $('#navigation').hover(
                    function () {
                        $('ul#holder',$(this)).stop().animate({'height':'160px'},200);
                    },
                    function () {
                        $('ul#holder',$(this)).stop().animate({'height':'60'},200);
                    }
                );

				$('#navigation').hover(
                    function () {
                        $('ul#holder ul#ourperspectives',$(this)).stop().animate({'marginLeft':'20px'},200);
                    },
                    function () {
                        $('ul#holder ul#ourperspectives',$(this)).stop().animate({'marginLeft':'-20px'},200);
                    }
                );
				
				$('#navigation').hover(
                    function () {
                        $('ul#holder ul#whoweserve',$(this)).stop().animate({'marginLeft':'25px'},200);
                    },
                    function () {
                        $('ul#holder ul#whoweserve',$(this)).stop().animate({'marginLeft':'-20px'},200);
                    }
                );
				
            });
