<!--
ee_menu = '<div style="position:absolute;"><a href="index.htm" class="noborder" onMouseOver="select(\'Hom\'); window.status=\'Go to my Main Page\'; return true" onMouseOut="unselect(\'Hom\'); window.status=\'\'; return true"><img src="Hom.png" name="Hom" border="0" vspace="1" alt="Home"></a>&nbsp;<a href="music.htm" class="noborder" onMouseOver="select(\'Mus\'); window.status=\'Go to my Music Page\'; return true" onMouseOut="unselect(\'Mus\'); window.status=\'\'; return true"><img src="Mus.png" name="Mus" border="0" vspace="1" alt="Music"></a>&nbsp;<a href="islam.htm" class="noborder" onMouseOver="select(\'Isl\'); window.status=\'Go to my Islam Page\'; return true" onMouseOut="unselect(\'Isl\'); window.status=\'\'; return true"><img src="Isl.png" name="Isl" border="0" vspace="1" alt="Islam"></a>&nbsp;<a href="linx.htm" class="noborder" onMouseOver="select(\'Lin\'); window.status=\'Go to my Links Page\'; return true" onMouseOut="unselect(\'Lin\'); window.status=\'\'; return true"><img src="Lin.png" name="Lin" border="0" vspace="1" alt="Links"></a>&nbsp;<a href="search.htm" class="noborder" onMouseOver="select(\'Sea\'); window.status=\'Go to my Search Page\'; return true" onMouseOut="unselect(\'Sea\'); window.status=\'\'; return true"><img src="Sea.png" name="Sea" border="0" vspace="1" alt="Search"></a>&nbsp;<a href="medic.htm" class="noborder" onMouseOver="select(\'Med\'); window.status=\'Go to my Medicine Page\'; return true" onMouseOut="unselect(\'Med\'); window.status=\'\'; return true"><img src="Med.png" name="Med" border="0" vspace="1" alt="Medicine"></a>&nbsp;<a href="various.htm" class="noborder" onMouseOver="select(\'Var\'); window.status=\'Go to my Page of Bits n Bobs\'; return true" onMouseOut="unselect(\'Var\'); window.status=\'\'; return true"><img src="Var.png" name="Var" border="0" vspace="1" alt="Various"></a>&nbsp;<a href="mailto:admin@REMOVEgafferTHESElicious.cCAPITALSom" class="noborder" onMouseOver="select(\'Ema\'); window.status=\'Contact me\'; return true" onMouseOut="unselect(\'Ema\'); window.status=\'\'; return true"><img src="Ema.png" name="Ema" border="0" vspace="1" alt="E-Mail"></a>&nbsp;<a href="http://video.google.com/videoplay?docid=-6604775898578139565" class="noborder" onMouseOver="select(\'Wat\'); window.status=\'THIS IS IMPORTANT, you MUST watch this\'; return true" onMouseOut="unselect(\'Wat\'); window.status=\'\'; return true"><img src="Wat.png" name="Wat" border="0" vspace="1" alt="Watch This"></a></div>';
ee_floatX = 10; // distance in pixels from the right and left edges of the browser's window
ee_floatY = 10; // distance in pixels from the top and bottom edges of the browser's window
ee_layerwidth = 543; // width in pixels for the layer (min for wii = 543)
ee_layerheight = 62; // height in pixels for the layer (min for wii = 62)
ee_halign = 'center'; // horizontal position of the layer (left, center, or right)
ee_valign = 'top'; // vertical position of the layer (top, middle, or bottom)
ee_delayspeed = 1; // speed at which the layer must float (0, 1, or 3)

function ee_adjust()
{

	var ee_xs = 0, ee_ys = 0;
	if (typeof(window.pageYOffset) == 'number')
	{
		ee_ys = window.pageYOffset;
		ee_xs = window.pageXOffset;
	}
	else if (document.body && (document.body.scrollLeft || document.body.scrollTop))
	{
		ee_ys = document.body.scrollTop;
		ee_xs = document.body.scrollLeft;
	}
	else if (document.documentElement && (document.documentElement.scrollLeft || document.documentElement.scrollTop))
	{
		ee_ys = document.documentElement.scrollTop;
		ee_xs = document.documentElement.scrollLeft;
	}

	if ((ee_lastX == -1) || (ee_delayspeed == 0))
	{
		ee_lastX = ee_xs + ee_floatX;
		ee_lastY = ee_ys + ee_floatY;
	}
	else
	{
		var ee_dx = Math.abs(ee_xs + ee_floatX - ee_lastX);
		var ee_dy = Math.abs(ee_ys + ee_floatY - ee_lastY);
		var ee_d = Math.sqrt((ee_dx * ee_dx) + (ee_dy * ee_dy));
		var ee_c = Math.round(ee_d / 10);
		if (ee_xs + ee_floatX > ee_lastX) { ee_lastX = ee_lastX + ee_delayspeed + ee_c; }
		if (ee_xs + ee_floatX < ee_lastX) { ee_lastX = ee_lastX - ee_delayspeed - ee_c; }
		if (ee_ys + ee_floatY > ee_lastY) { ee_lastY = ee_lastY + ee_delayspeed + ee_c; }
		if (ee_ys + ee_floatY < ee_lastY) { ee_lastY = ee_lastY - ee_delayspeed - ee_c; }
	}

	document.getElementById('ee_floatlayer').style.left = ee_lastX + 'px';
	document.getElementById('ee_floatlayer').style.top = ee_lastY + 'px';
	document.getElementById('ee_floatlayer').style.zIndex="100"; // positions the menubar WAY above other layers

	window.setTimeout('ee_adjust()',20); // smaller number gives higher acceleration
}

function ee_define()
{
	if (ee_old_resize)
	{
		ee_old_resize();
	}

	var ee_wo, ee_ho;

	ee_lastX = -1;

	if (typeof(window.innerWidth) == 'number')
	{
		ee_wo = window.innerWidth;
		ee_ho = window.innerHeight;
	}
	else if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight))
	{
		ee_wo = document.documentElement.clientWidth;
		ee_ho = document.documentElement.clientHeight;
	}
	else if (document.body && (document.body.clientWidth || document.body.clientHeight))
	{
		ee_wo = document.body.clientWidth;
		ee_ho = document.body.clientHeight;
	}

	if (ee_halign == 'left')   { ee_floatX = ee_ifloatX; }
	if (ee_halign == 'right')  { ee_floatX = ee_wo - ee_ifloatX - ee_layerwidth - ee_r_edge; }
	if (ee_halign == 'center') { ee_floatX = Math.round(ee_wo / 2) - Math.round(ee_layerwidth / 2); }

	if (ee_valign == 'top')    { ee_floatY = ee_ifloatY; }
	if (ee_valign == 'bottom') { ee_floatY = ee_ho - ee_ifloatY - ee_layerheight - ee_b_edge; }
	if (ee_valign == 'middle') { ee_floatY = Math.round(ee_ho / 2) - Math.round(ee_layerheight / 2); }
}

function ee_write_layer()
{
	ee_body = document.getElementsByTagName("body")[0];
	ee_body.insertBefore(ee_container,null);

	ee_old_resize = window.onresize;
	window.onresize = ee_define;

	ee_define();
	ee_adjust();
}

var W3CDOM = (document.createElement && document.getElementsByTagName);

if (W3CDOM)
{
	ee_container = document.createElement("div");
	ee_container.id = 'ee_floatlayer'; 
	ee_container.style.position = 'absolute';
	ee_container.style.left = ee_floatX + 'px';
	ee_container.style.top = ee_floatY + 'px';
	ee_container.style.width = ee_layerwidth + 'px';
	ee_container.style.height = ee_layerheight + 'px';
	ee_container.style.marginTop = '0px';
	ee_container.style.marginRight = '0px';
	ee_container.style.marginBottom = '0px';
	ee_container.style.marginLeft = '0px';
	ee_container.style.paddingTop = '0px';
	ee_container.style.paddingRight = '0px';
	ee_container.style.paddingBottom = '0px';
	ee_container.style.paddingLeft = '0px';
	ee_container.style.borderTop = '0';
	ee_container.style.borderRight = '0';
	ee_container.style.borderBottom = '0';
	ee_container.style.borderLeft = '0';
	if (window.ActiveXObject)
	{
		ee_container.style.overflowX = 'auto';
		ee_container.style.overflowY = 'auto';
	}
	else
	{
		ee_container.style.overflow = 'auto';
	}
	ee_container.innerHTML = ee_menu;

	window.ActiveXObject ? ee_r_edge = 0 : ee_r_edge = 20;
	window.ActiveXObject ? ee_b_edge = 0 : ee_b_edge = 20;
	ee_ifloatX = ee_floatX;
	ee_ifloatY = ee_floatY;
	ee_lastX = -1;
	ee_lastY = -1;

	window.setTimeout('ee_write_layer()',0); // time in ms before menubar appears, anything 250 or below seems instant. Remember, i.e. doesn't allow this div to load BEFORE the body items (in such cases it will fail to display at all on slow internet connections) so add defer="defer" into the html of the link to allow the body to render first in i.e. Setting this to 0 allows the menu to asynchronously load along with the body in the other browsers.
}
//-->