function aaanc() {}

aaanc.renderTopMenu = function()
{
	var _html = "";
	_html +=	'<div id="productsandservices" class="yuimenubar yuimenubarnav">';
	_html +=	'<div class="bd">';
	_html +=	'<ul class="first-of-type">';
	_html +=	'<li class="yuimenubaritem"><a class="yuimenubaritemlabel" href="index.html">Home</a></li>';
	_html +=	'<li class="yuimenubaritem"><span class="yuimenubaritemlabel">About</span>';
	_html +=	'	<div class="yuimenu"> ';
	_html +=	'	<div class="bd">';
	_html +=	'	<ul>';
	_html +=	'		<li><a class="yuimenuitemlabel" href="about.html">About AAA-NC</a></li>';
	_html +=	'		<li><a class="yuimenuitemlabel" href="algeria.html">About Algeria</a></li>';
	_html +=	'	</ul>';
	_html +=	'	</div>';
	_html +=	'	</div>';  
	_html +=	'</li>';

	_html +=	'<li class="yuimenubaritem"><span class="yuimenubaritemlabel">Links</span>';
	_html +=	'	<div class="yuimenu"> ';
	_html +=	'	<div class="bd">';
	_html +=	'	<ul>';
	_html +=	'		<li><a class="yuimenuitemlabel" href="links.html">AAA-NC Links</a></li>';
	_html +=	'		<li><a class="yuimenuitemlabel" href="fun.html">Fun</a></li>';
	_html +=	'		<li><a class="yuimenuitemlabel" href="coupons.html">Coupons</a></li>';
	_html +=	'	</ul>';
	_html +=	'	</div>';
	_html +=	'	</div>';  
	_html +=	'</li>';
	_html +=	'<li class="yuimenubaritem"><span class="yuimenubaritemlabel">News</span>';
	_html +=	'	<div class="yuimenu"> ';
	_html +=	'	<div class="bd">';
	_html +=	'	<ul>';
	_html +=	'		<li><a class="yuimenuitemlabel" href="news.html">AAA-NC News</a></li>';
	_html +=	'		<li><a class="yuimenuitemlabel" href="rss.html">World News</a></li>';
	_html +=	'	</ul>';
	_html +=	'	</div>';
	_html +=	'	</div>';  
	_html +=	'</li>';
	
	_html +=	'<li class="yuimenubaritem"><a class="yuimenubaritemlabel" href="classifieds.html">Classifieds</a></li>';

	_html +=	'<li class="yuimenubaritem"><a class="yuimenubaritemlabel" href="gallery.html">Photos</a></li>';
	_html +=	'<li class="yuimenubaritem"><a class="yuimenubaritemlabel" href="contact_us.html">Contact Us</a></li>';
	_html +=	'</ul>';
	_html +=	'</div>';
	_html +=	'</div>';
	
	document.write(_html);
	
	YAHOO.namespace("example.container");
	
	YAHOO.util.Event.onContentReady("productsandservices", function ()
	{
		/* Instantiate a MenuBar:  The first argument passed to the
		   constructor is the id of the element in the page
		   representing the MenuBar; the second is an object literal
		   of configuration properties. */
		var oMenuBar = new YAHOO.widget.MenuBar("productsandservices", {
												 autosubmenudisplay: true,
												 hidedelay: 750,
												 lazyload: true });
	
		/* Call the "render" method with no arguments since the
		   markup for this MenuBar instance is already exists in the page.*/
		oMenuBar.render();
	});
	
}
