		$(document).ready(function() { 

			$(".share").click(function(){
				$('#sharebox').toggle();
				 return false;
			});


			$(".close_share").click(function(){
				$('#sharebox').toggle();
				 return false;
			});

			$("form#sendform").submit(function(){

			 $.post("sendmail.asp",{
			       url: $("#url").val(),
			       pagename: $("#pagename").val(),
			       pagetitle: $("#pagetitle").val(),
			       to: $("#to").val(),
			       from: $("#from").val()
			     }, function(xml) {
						messageSent(xml); });
			 return false;
			});
			
		}); 

			function messageSent(str) {
				$("#theform").hide();
				$("#sendmailemail").val("");
				//$("#sendmailname").val("");
				$("#sendresult").show();
				//$('#sharebox').fadeOut("slow");

				$('#sharebox').fadeTo(3000, 1).fadeOut(2000, function () {
					//$(this).showForm();
					$("form")[ 0 ].reset();
					$("#theform").show();
					$("#sendresult").hide();
				});

			}
			function showForm() {
				$("#theform").show();
				$("#sendresult").hide();
			}
			