$(document).ready(function(){
	$('a#green-callout').hover(function(){
		$(this).children('span').stop(false, true).slideDown(300);
	}, function(){
		$(this).children('span').stop(false, true).slideUp(300);
	});
});
