$(document).ready(function(){
   
   		$(".project").children(".desc").hide();
		$(document).pngFix(); 
   
   		$(".project").hover(function(){
			
			currProject = $(this);
			myTimer = $.timer(100, function()
			{
				
					currProject.children(".desc").slideDown(600);
				
			});
			
			
			
		}, function(){
			$(this).children(".desc").slideUp(400);
			$.clearTimer(myTimer);
		})
   
 	});




