$(document).ready(function(){
	$("a#s2f").click(function(e){
		e.preventDefault(); // this will prevent the anchor tag from going the user off to the link

		var thisUrl = window.location;
		var thisSubject = "I thought this might interest you...";

		window.location = "mailto:?subject="+thisUrl+"&body="+document.title+" "+thisSubject;
	});
});
