function tweetMemeButton() {

	// If our TweetMeme container doesn't exist,
	// then this function will basically do nothing.

	if (document.getElementById("tm_button")) {

		// 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=normal&amp;source=kenoquinn&amp;servicebit.ly&amp;=height=\"'61'\" width=\"'50'\" frameborder=\"0\" scrolling=\"no\"><\/iframe>";

		// Insert our iframe into our TweetMeme container

		document.getElementById("tm_button").innerHTML = iframeCode;
	}
}
