// JavaScript Document



var texts = new Array();

var links = new Array();



// Do not modify this lines

function showBody(catego, texts, links){

	document.write("<br /><strong>" + catego + "</strong><br />")

	for (i=0;i<texts.length;i++){

		document.write("<a href=\"" + links[i] + "\">" + texts[i] + "</a><br />");

	}

	

}



/**

 * This is the format to show categos

 * Add a new catego with the var "catego"

 * then add subitems in the vars "text" and "links"

 * when is complete call the function "showBody" and reset the

 * vars "texts" and "links"

 */

 

//--> Catego 1

catego = "Designer Brands";

	texts[0] = "Coach Outlet Stores";

	links[0] = "coach.html";

	texts[1] = "Burberry Outlet Stores";

	links[1] = "burberry.html";

	texts[2] = "Gucci Outlet Stores";

	links[2] = "gucci.html";

	texts[3] = "Prada Outlet Stores";

	links[3] = "prada.html";



showBody(catego, texts, links);

texts = new Array();

links = new Array();



//--> Catego 2

catego = "Home";

	texts[0] = "Sears Outlet Stores";

	links[0] = "sears.html";

	texts[1] = "Pottery Barn Outlets";

	links[1] = "pottery_barn.html";

	texts[2] = "Furniture Outlet Stores";

	links[2] = "furniture.html";

	

showBody(catego, texts, links);

texts = new Array();

links = new Array();



//--> Catego 3

catego = "Department Stores";

	texts[0] = "Nordstrom Outlet Stores";

	links[0] = "nordstrom.html";

	texts[1] = "Lands End Outlet Stores";

	links[1] = "lands_end.html";

	texts[2] = "Macy*s Outlet Stores";

	links[2] = "macys.html";

	

showBody(catego,texts,links);

texts = new Array();

links = new Array();



//--> Catego 4

catego = "Quality Brands";

	texts[0] = "Gap Outlet Stores";

	links[0] = "gap_outlet.html";

	texts[1] = "Old Navy Outlet Stores";

	links[1] = "old_navy_outlet.html";



showBody(catego,texts,links);

texts = new Array();

links = new Array();



//--> Catego 5

catego = "Sports";

	texts[0] = "Nike Outlet Stores";

	links[0] = "nike_factory_store.html";

	texts[1] = "Reebok Outlet Stores";

	links[1] = "reebok_factory.html";

	texts[2] = "Puma Outlet Stores";

	links[2] = "puma.html";

	texts[3] = "Adidas Outlet Stores";

	links[3] = "adidas.html";

	

showBody(catego,texts,links);

texts = new Array();

links = new Array();



//--> Catego 6

catego = "Diamonds, Jewelry & Watches";

	texts[0] = "Diamond Outlet Stores";

	links[0] = "diamond.html";

	texts[1] = "Tag Heuer Outlet Stores";

	links[1] = "tag_heuer.html";

	texts[2] = "Seiko Outlet Stores";

	links[2] = "seiko.html";

	texts[3] = "Rolex Outlet Stores";

	links[3] = "rolex.html";

	

showBody(catego,texts,links);

texts = new Array();

links = new Array();



//--> Catego 7

catego = "Computers & Gadgets";

	texts[0] = "Sharper Image Outlet Stores";

	links[0] = "sharper_image.html";

	texts[1] = "Dell Outlet Stores";

	links[1] = "dell.html";

	texts[2] = "Apple Outlet Stores";

	links[2] = "apple.html";

	

showBody(catego,texts,links);

texts = new Array();

links = new Array();

