function shareFacebook(){

	var messages = new Array("Hungerlings don’t die easy. Destroy them with Snickers and stand to win great prizes like a Sony PlayStation 3, HP MINI and Casio G-Shock watches!");
	var fbtemplates = new Array("http://snickersgame.com");
	
	//var rr = Math.floor(Math.random()*3);
	var d = new Date();
	
	var fbmsg = messages;
	var furl = "http://www.facebook.com/share.php?src=bm&u=" + fbtemplates + "?nocache="+ d.getTime() +"&t=" + fbmsg;
	//doTrack("click/fbshare");
	window.open(furl,"fb");
}
function shareTwitter(){
	var twittermessages = new Array("Destroy the Hungerlings with Snickers to win a Sony PlayStation 3, HP MINI and Casio G-Shock watches! http://bit.ly/dVnbG5")
	
	var rr = Math.floor(Math.random()*3);
	var twittermsg = twittermessages;
	var twitterurl = "http://twitter.com/home?status="+twittermsg;
	
	//doTrack("click/twittershare");
	window.open(twitterurl,"twitter");
}

