//This is the navigation array

var names = new Array();
names[0] = "Misc People We Love";
names[1] = "My Favorite Things";
names[2] = "Karleen's Corner";
names[3] = "Party!";
names[4] = "Bling Receipt of the Month";
names[5] = "You Got My Back";
names[6] = "Nasty Nes' Page";
names[7] = "FAQs";

var url = new Array();
url[0] = "misc_people.html";
url[1] = "favorite_things.html";
url[2] = "karleen.html";
url[3] = "party.html";
url[4] = "bling_month.html";
url[5] = "my_back.html";
url[6] = "nasty_nes.html";
url[7] = "faqs.html";

function navLinks(){
  for (i = 0; i < names.length; i++){
    document.write('<a class="small" href="' + url[i] + '">'+ names[i] +'</a><br>');
  }
}

//This is the navigation array

var goodies = new Array();
goodies[0] = "The MisAdventure of Felonious";
goodies[1] = "Media";
goodies[2] = "NW Classics";
goodies[3] = "The Streets";
goodies[4] = "An Art Moment";
goodies[5] = "Presidential Poker";
goodies[6] = "All Access";

var goodies_url = new Array();
goodies_url[0] = "felonious.html";
goodies_url[1] = "media.html";
goodies_url[2] = "nw_classics.html";
goodies_url[3] = "the_streets.html";
goodies_url[4] = "art_moment.html";
goodies_url[5] = "presidential_poker.html";
goodies_url[6] = "all_access.html";

function navGoodies(){
  for (i = 0; i < goodies.length; i++){
    document.write('<a class="small" href="' + goodies_url[i] + '">'+ goodies[i] +'</a><br>');
  }
}


