/*** MENU ***/         
var _servicesOpen = false;
var _servicesToggler;
function closeServicesMenu() {
	_servicesOpen = false;
	 $('nav#main',$('.splash')).stop().animate({'height':'30px'},1000, "easeInOutQuint");
	 $('.services',$('.splash')).stop().animate({'width':'48px'},350, "easeOutQuint");
}



$(function() {
			
var d=300;
_servicesToggler =  $('.splash .services a');
			
              _servicesToggler.each(function(){
                $(this).stop().animate({'paddingBottom':'0'},d+=150);
				});
   				   
               _servicesToggler.toggle (
                    function() {
						_servicesOpen = true;
                        $('nav#main',$('.splash')).stop().animate({'height':'235px'},1000, "easeInOutQuint");
						$('.services',$('.splash')).stop().animate({'width':'130px'},350, "easeInQuint");
                    },
                    closeServicesMenu
                );


});
