function tweetMemeButton() {

	// If our TweetMeme container doesn't exist,
	// then this function will basically do nothing.

	if (document.getElementById("tweetmeme_page")) {

		// This is the code we wrote a second ago.

	var iframecode="";
iframecode += "<iframe src=\"http:\/\/api.tweetmeme.com\/button.js?url=\" + escape(document.URL) + \"&amp;style=compact&amp;source=lucynixon\" scrolling=\"no\" frameborder=\"0\" width=\"90\" height=\"20\" ><\/iframe>";
		// Insert our iframe into our TweetMeme container

		document.getElementById("tweetmeme_page").innerHTML = iframecode;
	}
}


