jQuery(function ($) {
	$('#hello a.modal').click(function (e) {
		e.preventDefault();
		$('#sayhello').modal();
	});
	$(function(){  
	 $("#hello a").hover(function(){  
	  $(this).children("span").fadeIn();  
	 }, function(){  
	  $(this).children("span").fadeOut();  
	 })    
	});  
});