$(document).ready(function() {	$("#loading")	.ajaxStart(function(){		$(this).show();	})	.ajaxComplete(function(){		$(this).hide();	});	$("select#object_sub")	.ajaxStart(function(){		$(this).hide();	})	.ajaxComplete(function(){		$(this).show();	});	$('#send_btn').click(function(event) 	{		$.get("../send_to_friend.php?email="+$('#textfield').val(), function(j)		{			$('#textfield').val(j);				//alert(j);		});    		event.preventDefault();	});});
