$(document).ready(function(){

		$("#menu li").hover(
  		function () {
    		$(this).animate({marginLeft: "10px"}, 500);    
 			},
  		function () {
    		$(this).animate({marginLeft: "0px"}, 1500);    
  		}
		);

	/*
	$("#portfolio li").hover(
 	 		function () {
    		$(this).find('img').animate({height: "0px"}, 500);    
    		$(this).find('.tooltip').animate({height: "120px"}, 500);    
    		$(this).find('span').show();    
  		},
  		function () {
    		$(this).find('img').animate({height: "120px"}, 500);    
    		$(this).find('.tooltip').animate({height: "20px"}, 500);    
    		$(this).find('span').hide();    
  		}
		);
	*/

		$("#portfolio li").hover(
			function () {$(this).find('.black').fadeIn('slow');$(this).find('span').fadeIn('fast');},
  		function () {$(this).find('.black').fadeOut('slow');$(this).find('span').fadeOut('fast');}
		);
		
		$("#portfolio li").hover(
			function () {$(this).find('.black').fadeIn('slow');$(this).find('span').fadeIn('fast');},
  		function () {$(this).find('.black').fadeOut('slow');$(this).find('span').fadeOut('fast');}
		);	

    
	});
