﻿	var tfb={};
	
	tfb.defaultTop=78;

	tfb.showbadge=function()
	{
		if(!window.XMLHttpRequest)
		{
			return;
		}
		if(document.getElementById('floater1'))
		{
			document.body.removeChild(document.getElementById('floater1'));
		}
		if(tfb.top<0||tfb.top>1000||isNaN(tfb.top))
		{
			tfb.top=tfb.defaultTop;
		}	
	
		var validColorPattern=/^#([a-f]|[A-F]|[0-9]){3}(([a-f]|[A-F]|[0-9]){3})?$/;


		tfb.tabStyleCode='position:fixed;'+'top:'+tfb.top+'px;'+'width:30px;'+'height:119px;'+'z-index:8765;'+'cursor:pointer;'+'background:#35ccff url(/images/common/follow_me.gif);'+'background-repeat:no-repeat;';	
		tfb.tabStyleCode+='right:0; background-position:left top;';
		

		tfbMainDiv = document.createElement('div');
		tfbMainDiv.setAttribute('id','floater1');

		document.body.appendChild(tfbMainDiv);tfbMainDiv.innerHTML='<div id="tfbTab" style="'+tfb.tabStyleCode+'"></div><div id="tfbAbout" style="'+tfb.aboutStyleCode+'"></div>'+'<style>#tfbAbout{visibility:hidden;} #floater1:hover #tfbAbout{visibility:visible;}</style>';
		document.getElementById('tfbTab').onclick=function()
		{
			window.open("http://www.twitter.com/templestaykorea");
		}
	}
