function j(){

	// finds the url of the current page
	var url = window.location;
	
	// finds the <title> of the current page
	var title = document.title;
	
	// writes the href to send an e-mail based on the current url and <title>
	var email = "mailto:?subject=Interesting Webpage&amp;body=I thought you might be interested in this page that I found: " + title + ". You can view it here: " + url; 
	
	// writes the actual html that shows up on the page
	var i = "<ul class='sharing-cl'>";
		i += "<li><a class='sh-digg' href='http://digg.com/submit?phase=2&amp;url=" + url + "&amp;title=" + title + "' target='_blank'>Digg</a></li>";
		i += "<li><a class='sh-facebook' href='http://www.facebook.com/share.php?u=" + url + "&amp;t=" + title + "' target='_blank'>Facebook</a></li>";
		i += "<li><a class='sh-twitter' href='http://twitter.com/home?status=" + title + " :: " + url + "' target='_blank'>Twitter</a></li>";
		i += "<li><a class='sh-email' href='" + email + "'>Email</a></li>";
		i += "<li><a class='sh-bookmark' href='javascript:window.external.AddFavorite(\"" + url + "\",\"" + title + "\");'>Bookmark</a></li>";
	i += "</ul>";
	
	document.write(i);
	
}

j();
