var hrefs = new Array(10);

hrefs[ 0] = "entrance.html";
hrefs[ 1] = "news.html";
hrefs[ 2] = "reviews.html";
hrefs[ 3] = "lineage.html";
hrefs[ 4] = "records.html";
hrefs[ 5] = "lyrics.html";
hrefs[ 6] = "mp3.html";
hrefs[ 7] = "photos.html";
hrefs[ 8] = "fanzine.html";
hrefs[ 9] = "links.html";
hrefs[10] = "credits.html";
hrefs[11] = "updates.html";

function framechange(which)
{
	parent["title"  ].location="titles/title"+which+".html";
	parent["arkview"].location=hrefs[which];
}

