/*-- TOP NAVIGATION MENU --*/
var d=document;
var rootp='';               // root path
if (location.href.indexOf("cat_full/")!=-1) rootp="../";
if (location.href.indexOf("catalog/")!=-1) rootp="../";
var ip=rootp+'jpg/';        // img path
var mt='_self';             // menu target
if (parent) mt="_parent";
var pl=new Array;
var i=new Array("home","company","production","collections","catalogue","contact");
for (var a=0;a<6;a++) { pl[a]=new Image(); pl[a].src=ip+i[a]+"A"+".jpg";}
function drawm(mn,an,ml) { // menu name, menu link from root path
 var act=0;
 if (mn=='contact') rootp="";
 if ((mn=='catalogue') && (location.href.indexOf("cattopmenu.html")!=-1)) ml='frmcat.htm';
 if ((mn=='home') && (parent.location.href.charAt(parent.location.href.length-1)=='/')) act=1;
 if (parent) if (parent.location.href.indexOf(ml)!=-1) act=1;
 if (mn=='home' && location.href.indexOf("catalog/")!=-1) act=0;
 if (act!=1) d.write("<a href='"+rootp+ml+"' target='"+mt+"'><img alt='"+an+"' id="+mn+" src='"+ip+mn+".jpg' onmouseover='bd(this);' onmouseout='bu(this);'></a>");
 else        d.write("<img src='"+ip+mn+"A.jpg'>");
}
function bd(ob) { ob.src=ip+ob.id+'A.jpg';}
function bu(ob) { ob.src=ip+ob.id+'.jpg';}
d.write("<table border='0' cellpadding='0' cellspacing='0' width='100%'><tr>");
d.write("<td width=120 style='border-bottom:1px solid #8c6331;'>&nbsp;</td>");
d.write("<td style='border-bottom:1px solid #8c6331;'>&nbsp;</td>");
d.write("<td width=449 align=center style='background:url(\""+ip+"topmenu_bg.gif\") center no-repeat; padding:1px;padding-bottom:0px;'>");
drawm("home","Home","index.html");
drawm("company","Company","company.html");
drawm("production","Production","production.html");
drawm("collections","Collections","collections.html");
drawm("catalogue","Catalogue","catalog/");
drawm("contact","Contact us","mailto:comero&#64;comero.net");
d.write("</td>");
d.write("<td style='border-bottom:1px solid #8c6331;'>&nbsp;</td>");
d.write("<td width=120 style='border-bottom:1px solid #8c6331;'>&nbsp;</td>");
d.write("</tr></table>");
d.write("<div style='background:white; padding:1px; position:absolute; top:6px; left:20px;width:90px; height:30px;'>");
d.write("<a href='"+rootp+"index.html' target='"+mt+"'>");
d.write("<img src='"+ip+"comerogroup_90x30.gif' alt='Comero Group Home Page' border='0' width='90' height='30'></a></div>");
/*-- /TOP NAVIGATION MENU --*/
