
var item=new MakeArray(15);
var cat=new MakeArray(12);

item[0]=new Product("Kappa", "http://www.showdownsports.com/kappa/index.html");
item[1]=new Product("Nike", "http://www.showdownsports.com/nike/index.html");
item[2]=new Product("Lotto", "http://www.showdownsports.com/lotto/index.html");
item[3]=new Product("Ducati", "http://www.showdownsports.com/ducati/index.html");
item[4]=new Product("Adidas", "http://www.showdownsports.com/adidas/index.html");
item[5]=new Product("Asics", "http://www.showdownsports.com/asics/index_outdoor.html");
item[6]=new Product("Puma", "http://www.showdownsports.com/puma/index.html");
item[7]=new Product("Ferrari", "http://www.showdownsports.com/ferrari/index.html");
item[8]=new Product("Pantofola D'oro", "http://www.showdownsports.com/pantofola/pantoutdoor.html");
item[9]=new Product("Reebok", "http://www.showdownsports.com/reebok/index.html");
item[10]=new Product("Diadora", "http://www.showdownsports.com/diadora/index.html");
item[11]=new Product("Valsport", "http://www.showdownsports.com/valsport/index.html");
item[12]=new Product("Fila", "http://www.showdownsports.com/fila/index.html");
item[13]=new Product("Andreas", "http://www.showdownsports.com/andreas/20062cobraInwht.html");
item[14]=new Product("Calcio Swiss", "http://www.showdownsports.com/calcio_swiss/index.html");

cat[0]=new Product("Indoor Soccer Shoes", "http://www.showdownsports.com/footwear_soccer_in.html");
cat[1]=new Product("Outdoor Soccer Shoes", "http://www.showdownsports.com/footwear_soccer.html");
cat[2]=new Product("Kids Soccer Shoes", "http://www.showdownsports.com/kids-soccer/index.html");
cat[3]=new Product("Warm-ups", "http://www.showdownsports.com/kappa/index.html");
cat[4]=new Product("Soccer Replicas", "http://www.showdownsports.com/serie_a/index.html");
cat[5]=new Product("Soccer Balls", "http://www.showdownsports.com/soccerballs/index.html");
cat[6]=new Product("Diecast Car models", "http://www.showdownsports.com/ferrari/index2.html");
cat[7]=new Product("Soccer Watches", "http://www.showdownsports.com/calcio_swiss/index.html");
cat[8]=new Product("Knitted Hats and Scarves", "http://www.showdownsports.com/serie_a/knitwear.html");
cat[9]=new Product("Soccer Clocks", "http://www.showdownsports.com/clocks/index.html");
cat[10]=new Product("Bags", "http://www.showdownsports.com/bags/index.html");
cat[11]=new Product("Keychains", "http://www.showdownsports.com/keychains/index.html");


function MakeArray(n){
this.length=n;
for (var i=0; i<=n; i++)
{this[i]=0}
return this;
}

function Product(name, dest){
this.name=name;
this.destination=dest;
}



function write_menu(){
var MyString="";
var MyURL="";
 

document.writeln("<table width=98% border=0 cellspacing=2 cellpadding=2><th>Brands</th>");
 
for(k=0; k<=14; k++){
MyString=item[k].name;
MyURL=item[k].destination;
document.writeln("<tr><td bgcolor=ffffff>");
document.writeln(MyString.link(MyURL));
document.writeln("</td></tr>");
}
 
document.writeln("</table>");
document.writeln("<br>");
document.writeln("<table width=98% border=0 cellspacing=2 cellpadding=2><th>Categories</th>");
 
for(k=0; k<=11; k++){
MyString=cat[k].name;
MyURL=cat[k].destination;
document.writeln("<tr><td bgcolor=ffffff>");
document.writeln(MyString.link(MyURL));
document.writeln("</td></tr>");
}
 
document.writeln("</table>");

}