$(document).ready(function() {
	
	$("#process div").hover(function(){
									 
		$(this).children('a').animate({bottom:'50px'},{queue:false, duration:120}).fadeIn(121); 											 
	}
	, function (){
									 
		$(this).children('a').animate({bottom:'0px'},{queue:false, duration:100}).fadeOut(101);									
	});
	
	
});


