
// JS TO HTML SCRIPT
//
// for TEIDEHOME.COM
//
// by internet-kontor.de



// MENUSTRUKTUREN...
//
menuname=new Array();
link=new Array();

menuname[1]=new Array();				link[1]=new Array();
menuname[1][1]="<B>Buy</B>";			link[1][1]="../../buy/start/index.html";
menuname[1][2]="Listings";		link[1][2]="../../buy/php/search.php?action=1";
menuname[1][3]="Search form";			link[1][3]="../../buy/php/newSearch.php";

menuname[2]=new Array();				link[2]=new Array();
menuname[2][1]="<B>Rent</B>";			link[2][1]="../../rent/start/index.html";
menuname[2][2]="Listings";		link[2][2]="../../rent/php/search.php?action=1";
menuname[2][3]="Search form";			link[2][3]="../../rent/php/newSearch.php";


menuname[3]=new Array();				link[3]=new Array();
menuname[3][1]="<B>Insert</B>";		link[3][1]="../../inserieren/start/index.html";
menuname[3][2]="10 good reasons ";		link[3][2]="../../inserieren/1/index.html";
menuname[3][3]="The cost of an advertisement";				link[3][3]="../../inserieren/2/index.html";
menuname[3][4]="How to do it?";		link[3][4]="../../inserieren/3/index.html";
menuname[3][5]="Register/Login for clients";		link[3][5]="../../inserieren/php/loginRegister.php";

menuname[4]=new Array();				link[4]=new Array();
menuname[4][1]="<B>Publicity</B>";		link[4][1]="../../werbung/start/index.html";
menuname[4][2]="Recomendation of the month";		    link[4][2]="../../werbung/3/index.html";
menuname[4][3]="Banner advertising";				link[4][3]="../../werbung/1/index.html";

menuname[5]=new Array();				link[5]=new Array();
menuname[5][1]="<b>Infopoint</b>";		link[5][1]="../../infocenter/start/index.html";
menuname[5][2]="Tips for buyers";		link[5][2]="../../infocenter/1/index.html";
menuname[5][3]="Tips for vendors";	link[5][3]="../../infocenter/2/index.html";
menuname[5][4]="Law & taxation";		link[5][4]="../../infocenter/3/index.html";


// SCHREIBE MENUBLÖCKE
//
for(i=1;i<menuname.length;i++)
{
document.write( "<div id=\"sub"+i+"\" menuname=\"sub"+i+"\" class=\"sub\" onmouseover=\"menu("+i+")\" onmouseout=\"weg("+i+")\"><ilayer menuname=\"nn4\"><layer menuname=\"nn4cas\" onmouseover=\"menu("+i+")\" onmouseout=\"weg("+i+")\"><TABLE border=0 cellspacing=1 cellpadding=2><TR><TD bgcolor=#006db6><TABLE border=0 cellspacing=0 cellpadding=1>\n" );

for(j=1;j<menuname[i].length;j++)
{
document.write( "<TR><TD bgcolor=#FFffff>&middot;&#160;<a href=\""+link[i][j]+"\">"+menuname[i][j]+"</a>&#160;</TD></TR>\n" );
}

document.write( "</TABLE></TD></TR></TABLE></layer></ilayer></div>\n\n" );
}


