$(document).ready(function(){  
		$('div.projectTitle').css({height: '15px', margin:'-80px 0 0'});
		$('#projectHeader').css({marginTop: '0px'});
	
	$("div.section").mouseenter(function(){		
				$(this).find(".projectTitle").stop().animate({height: '50px', margin:'-120px 0 0'}, 300 );
				$(this).find(".slide").fadeIn("slow");
				$(this).find(".slide").removeClass("hidden");
				});
	$("div.section").mouseleave(function(){		
				$(this).find(".projectTitle").stop().animate({height: '15px', margin:'-80px 0 0'}, 500 );
				$(this).find(".slide").fadeOut("fast");
				$(this).find(".slide").addClass("hidden");
				});
      });