
$(document).ready(function(){  
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute  
	//Vertical Sliding  
	$('.staffBox').hover(function(){  
	    $(".slider", this).stop().animate({top:'150px'},{queue:false,duration:300});
	}, function() {  
	    $(".slider", this).stop().animate({top:'0'},{queue:false,duration:300});  
	});
});
