// JavaScript Document

function createmenu(){
	var amenu = new Array (
						   new Array(
									 "Home",
									 "index.html"
									 ),
						   new Array(
									 "Bio",
									 "bio.html"
									 ),
						   new Array(
									 "Discography",
									 "discography.html"
									 ),
						   new Array(
									 "Videos",
									 "videos.html"
									 ),
						   new Array(
									 "Photos",
									 "photos.html"
									 ),
						   new Array(
									 "Tour",
									 "tour.html"
									 ),
						   new Array(
									 "Contact",
									 "contact.html"
									 ),
						   new Array(
									 "Press",
						             "presskit/presskit/index.html"
									 )
						   )
	

		
		
		for (i=0;i<amenu.length;i++){
		document.write(" <a href=" + amenu[i][1] + "> <div class='eachmenu'>" + amenu[i][0] + "</div></a>");
		}

}


function createfooter() {
	var afooter = new Array(
						new Array (
								   "Home",
								   "index.html"
								   ),
						new Array (
									"Bio",
									"bio.html"
									),
						   new Array(
									 "Discography",
									 "discography.html"
									 ),
						    new Array(
									 "Videos",
									 "videos.html"
									 ),
						   new Array(
									 "Photos",
									 "photos.html"
									 ),
						   new Array(
									 "Tour",
									 "tour.html"
									 ),
						   new Array(
									 "Contact",
									 "contact.html"
									 ),
						   new Array(
									 "Press",
									 "presskit/presskit/index.html"
									 )
					
						);

	for (i=0;i<afooter.length;i++){
		if ( i != afooter.length-1)
		{
			document.write(" <div class='footermenu'><a  href=" + afooter[i][1] + ">" + afooter[i][0] + "</a></div>");
				}
		else
		  	document.write(" <div class='footermenu footermenu_last' ><a  href=" + afooter[i][1] + ">" + afooter[i][0] + "</a></div>");
	}
}


