$(document).ready(function() {
	// show the staff info on hover
	$("#us-container .element").hover(
		function () {
	    	$(this).children('.text').animate({marginTop: '-52px'}, {queue:false, duration:400});
	    },
	    function () {
	    	$(this).children('.text').animate({marginTop: '0' }, {queue:false, duration:400});
	    }
	);

});
