function showHideDropDomDivYourAccountsMenuMaker(){
	if( (!document.addEventListener) && (!document.attachEvent) ) return;
	// we want to find a link tag with a certain id, if not then return
	var t=document.getElementById('showhidedrop');
 	if(! t) return;

	var thediv = ''
	+ '<div id="ddown" align="left" class="ddtxt">'
	+ '<div class="item"><span class="ddhighlight"><a href="login2.html" target="_top">Personal Account Log In<'+'/a><'+'/span><'+'/div>'
	+ '<div class="item"><a href="#">Business Account Log In<'+'/a><'+'/div>'
	+ '<'+'/div>' ;
	var d = document.createElement("div");
	d.innerHTML = thediv;
	var bod = document.getElementsByTagName("BODY")[0]
	bod.appendChild(d)
	// now do the link thing...

	// is this ie or mozilla, only the newer versions mind...
	if(document.addEventListener){ // DOM
		t.addEventListener("mouseover" , showdrop , false );
		t.addEventListener("mouseout" , hidedrop , false );
		d.addEventListener("mouseover" , showdrop , false );
		d.addEventListener("mouseout" , hidedrop , false );
	}else if(document.attachEvent){ // ie
		t.attachEvent("onmouseover" , showdrop );
		t.attachEvent("onmouseout" , hidedrop  );
		d.attachEvent("onmouseover" , showdrop );
		d.attachEvent("onmouseout" , hidedrop  );
	}

	var TO = '';
	function showdrop() {
		if(TO)clearTimeout(TO)
		d.firstChild.style.display="block";
	}
	function hidedrop() {
		TO = setTimeout('document.getElementById("ddown").style.display="none";' , '50')
	}
}

showHideDropDomDivYourAccountsMenuMaker()
/*
if(document.attachEvent) window.attachEvent("onload" , showHideDropDomDivYourAccountsMenuMaker );
if(document.addEventListener)window.addEventListener("load" , showHideDropDomDivYourAccountsMenuMaker , false);
*/

