/*	
	Generate Social Bookmarking Section
	David Durham 2009
*/

function addShareLinks() {

	document.write("Share this game with your friend using one of these bookmarking services.<br><br>");
	document.write("<div style='width:110px; float:left;'>");
	document.write("<a href='http://www.facebook.com/sharer.php?u=" + location.href + "&t=" + document.title + "'> <img src='../../images/bookmarking/facebook.jpg' border='0'/> Facebook</a>");
	document.write("<br>");
	document.write("<a href='http://www.myspace.com/Modules/PostTo/Pages/?u=" + location.href + "&t=" + document.title + "'><img src='../../images/bookmarking/myspace.jpg' border='0'/> MySpace</a>");
	document.write("</div>");
	document.write("<div style='width:110px; float:left;'>");
	document.write("<a href='http://www.digg.com/submit?phase=2&url=" + location.href + "'><img src='../../images/bookmarking/digg.jpg' border='0'/> Digg</a>");
	document.write("<br>");
	document.write("<a href='http://del.icio.us/submit?url=" + location.href + "&title=" + document.title + "'><img src='../../images/bookmarking/delicious.jpg' border='0'/> Delicious</a>");
	document.write("</div>");
}