  function sfHover() {
	
	if(document.getElementById("drinktab_coffee"))
	{
		document.getElementById("drinktab_coffee").onmouseover=function() {this.className+="_bold";}		
		document.getElementById("drinktab_coffee").onmouseout=function() {this.className=this.className.replace("_bold", "");}
	}
	if(document.getElementById("drinktab_lime"))
	{
		document.getElementById("drinktab_lime").onmouseover=function() {this.className+="_bold";}
		document.getElementById("drinktab_lime").onmouseout=function() {this.className=this.className.replace("_bold", "");}
	}
	if(document.getElementById("drinktab_mango"))
	{
		document.getElementById("drinktab_mango").onmouseover=function() {this.className+="_bold";}
		document.getElementById("drinktab_mango").onmouseout=function() {this.className=this.className.replace("_bold", "");}
	}
	if(document.getElementById("drinktab_coconut"))
	{
		document.getElementById("drinktab_coconut").onmouseover=function() {this.className+="_bold";}
		document.getElementById("drinktab_coconut").onmouseout=function() {this.className=this.className.replace("_bold", "");}
	}
	if(document.getElementById("drinktab_vanilla"))
	{
		document.getElementById("drinktab_vanilla").onmouseover=function() {this.className+="_bold";}
		document.getElementById("drinktab_vanilla").onmouseout=function() {this.className=this.className.replace("_bold", "");}
	}
}

sfHover();
//if (window.attachEvent) window.attachEvent("onload", sfHover);

