$(document).ready(function(){
		
		

		$(".showCallOutput").live("click",function() {
			$(this).children(".callBox").show();
			 	event.preventDefault();
		});
	
		$(".callBox").live( 'mouseleave',  function() { 
			$(this).hide();

	
});

});
