﻿function tweetMemeButton() {
	if (document.getElementById("tweet")) {
		var iframeCode = new Array();
		iframeCode += "<iframe src=\"http://api.tweetmeme.com/button.js?url=" + escape(document.URL) + "&amp;style=compact&amp;source=crookeddesigns&amp;service=bit.ly\" scrolling=\"no\" frameborder=\"0\" width=\"90\" height=\"20\" >";
		document.getElementById("tweet").innerHTML = iframeCode;
	}
}
function facebookLike() {
	if (document.getElementById("like")) {
		var iframeCode2 = new Array();
		iframeCode2 += "<iframe src=\"http://www.facebook.com/plugins/like.php?href=" + escape(document.URL) + "&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;colorscheme=light&amp;height=21\" scrolling=\"no\" frameborder=\"0\" width=\"100\" height=\"21px\" >";
		document.getElementById("like").innerHTML = iframeCode2;
	}
}
window.onload = function()
{
	facebookLike();
	tweetMemeButton();
}
