function WriteMenu()

{

var root = "http://www.sullivanellisltd.com";



//document.writeln('<p align=\"center\"><img src=\"' + root + '/images/title.png\"></p>');

document.writeln('<img align="center" src=\"' + root + '/images/title.png\">');

document.writeln('  <table width=\"510\" border=\"0\" align=\"center\">');

document.writeln('    <tr>');

document.writeln('    <td><ul id=\"csstopmenu\">');

document.writeln('                    <li class=\"mainitems\" style=\"border-left-width: 1px\"> ');

document.writeln('            <div class=\"headerlinks\"><a href=\"' + root + '/index.html">Home</a></div>');

document.writeln('          </li>');

document.writeln('		  <li class=\"mainitems\"> ');

document.writeln('           <div class=\"headerlinks\"><a href=\"' + root + '/html/services.php#Basic_Services\">Our Services</a></div>');

document.writeln('        <ul class=\"submenus\" style=\"width: 14em\">');

document.writeln('          <li><a href=\"' + root + '/html/services.php#Basic_Services\">Professional Funeral Services</a></li>');

document.writeln('          <li><a href=\"' + root + '/html/services.php#Pet_Loss\">Pet Loss</a></li>');

document.writeln('          <li><a href=\"' + root + '/html/services.php#Embalming\">Embalming</a></li>');

document.writeln('          <li><a href=\"' + root + '/html/services.php#Other_Preparations\">Other Preparations</a></li>');

document.writeln('          <li><a href=\"' + root + '/html/services.php#Facility_Charges\">Facility and Staff Charges</a></li>');

document.writeln('          <li><a href=\"' + root + '/html/services.php#Transportation\">Transportation</a></li>');

document.writeln('          <li><a href=\"' + root + '/html/prearrange.php\">Pre-Arrangements</a></li>');

document.writeln('          <li><a href=\"' + root + '/html/services.php#Fowarding_of_Remains\">Forwarding of Remains</a></li>');

document.writeln('          <li><a href=\"' + root + '/html/services.php#Receiving_of_Remains\">Receiving of Remains</a></li>');

document.writeln('          <li><a href=\"' + root + '/html/services.php#Direct_Cremation\">Direct Cremations</a></li>');

document.writeln('          <li><a href=\"' + root + '/html/services.php#Immediate_Burial\">Immediate Burial</a></li>');

document.writeln('        </ul>');

document.writeln('		  </li>');

document.writeln('          <li class=\"mainitems\"> ');

document.writeln('            <div class=\"headerlinks\"><a href=\"' + root + '/html/merchandise.php\">Merchandise</a></div>');

document.writeln('        <ul class=\"submenus\" style=\"width: 14em\">');

document.writeln('          <li><a href=\"' + root + '/html/caskets.php\">Caskets</a></li>');

document.writeln('          <li><a href=\"' + root + '/html/urns.php\">Urns</a></li>');

document.writeln('          <li><a href=\"' + root + '/html/outer.php\">Outer Burial Container</a></li>');

document.writeln('          <li><a href=\"' + root + '/html/other_merchandise.php\">Other Merchandise</a></li>');

document.writeln('        </ul>');

document.writeln('          </li>');

document.writeln('          <li class=\"mainitems\"> ');

document.writeln('            <div class=\"headerlinks\"><a href=\"' + root + '/condolences/condolences.php\">Online Condolences</a></div>');

document.writeln('          </li>');

document.writeln('          <li class=\"mainitems\"> ');

document.writeln('            <div class=\"headerlinks\"><a href=\"' + root + '/html/aboutus.php\">About Us</a></div>');

document.writeln('        <ul class=\"submenus\" style=\"width: 14em\">');

document.writeln('          <li><a href=\"' + root + '/html/aboutus.php\">About the Staff</a></li>');

document.writeln('          <li><a href=\"' + root + '/html/contactus.php\">Contact Us</a></li>');

document.writeln('          <li><a href=\"' + root + '/html/prearrange.php\">Contact For Pre-Arrangement</a></li>');

document.writeln('          <li><a href=\"' + root + '/html/support.php\">Grief Support</a></li>');

document.writeln('          <li><a href=\"' + root + '/html/Policy.php\">Credit Policy</a></li>');

document.writeln('        </ul>');

document.writeln('          </li>');

document.writeln('<div id=\"clearmenu\" style=\"clear: left\"></div></td>');

document.writeln('  </tr>');

document.writeln('</table>');

document.writeln('  <br>');

}

function startMenu() 

{

	if (document.all&&document.getElementById) 

	{

		cssmenu = document.getElementById("csstopmenu");

		for (i=0; i<cssmenu.childNodes.length; i++) 

		{

			node = cssmenu.childNodes[i];

			if (node.nodeName=="LI") 

			{

				node.onmouseover=function() 

				{

					this.className+=" over";

				}

				node.onmouseout=function()

				{                  

					this.className=this.className.replace(" over", "")

				}

			}

		}

	}

}



if (window.attachEvent)

window.attachEvent("onload", startMenu);

else

window.onload=startMenu;

