/*
 * HTML 2 FONT HAHAHA
 */

$(document).ready(function() {
	
	$("#menutop ul > li > a").each(function(index, li)
	{
		img = document.createElement("IMG");
		// lets see if child[0] is a text
		if (li.childNodes[0].nodeName == '#text') 
		{
			text = li.childNodes[0].nodeValue;
			url  =  "font.php?text=" + escape(text.replace("\xAD", "\n"));
			img.src= url;
			img.tag= url;
			img.alt= text

			img.onmouseover = function() { if (this.src != this.tag + '&r=255&g=255&b=255') this.src= this.tag + '&r=255&g=255&b=255'; }
			img.onmouseout  = function() { if (this.src != this.tag) this.src= this.tag; }

			li.childNodes[0].nodeValue = '';
			li.appendChild(img);
		}

	});

});

