//Home page box reveals
jQuery(document).ready(function($){
	
	$("#teasers li").hover(
		function(){
			$(this).stop().find('.reveal').slideDown(400);
		},
		function(){
			$(this).stop().find('.reveal').slideUp(400);
		}
	);

});
