// JavaScript Document



function fnMenu()

	{

	var str="";
	str+="<table width='100%'  border=0 cellspacing='0' cellpadding='0'>";
	str+="<tr>";
	str+="<td class='lmenu'>";
	str+="<DIV id=rightcontent>";
	str+="<DIV id=rt-pad>";
	str+="<UL id=nav>";
	str+="<LI>";
	str+="<DIV class=head><span class=bodytext>Welcome Administrator !</span></DIV>";
	str+="<UL>";
	str+="<LI><A href='#'><B>NEWS & EVENTS</B></A>"; 
	str+="<LI><A href='" + linkPath + "curr_news.php'> &raquo; &nbsp;Current News</A>"; 
	str+="<LI><A href='" + linkPath + "add_news.php'> &raquo; &nbsp;Add news</A>"; 
	str+="<LI><A href='#'>&nbsp;</A>";
	str+="<LI><A href='#'><b>Products Gallery</b></A>"; 
	str+="<LI><A href='" + linkPath + "gal_head.php'> &raquo; &nbsp;Gallery Heading</A>"; 
	str+="<LI><A href='" + linkPath + "sub_head.php'> &raquo; &nbsp;Gallery Collections</A>"; 
	str+="<LI><A href='#'>&nbsp;</A>";
    str+="<LI><A href='" + linkPath + "add_prod.php'> &raquo; &nbsp;Add Products</A>"; 
	str+="<LI><A href='" + linkPath + "lst_prd.php'> &raquo; &nbsp;List of Products</A>"; 
	str+="<LI><A href='#'>&nbsp;</A>";
	str+="<LI><A href='" + linkPath + "changepw.php'>Change Password</A> ";
	str+="<LI><A href='" + linkPath + "logout.php'>Logout</A> ";
	str+="<LI><A href='#'>&nbsp;</A>";
	str+="<LI><A href='#'>&nbsp;</A>";
	str+="<LI><A href='#'>&nbsp;</A>";
	str+="</LI></UL></LI></UL></DIV>";
	str+="</DIV></td>";
 	str+="</tr></table>";
	document.write(str);

	}
