var URL = [];
var title = [];
var nofollow = [];

title[0] = "Home";
URL[0] = "http://www.learnpianoonline.com/welcome.html";
nofollow[0] = 0;

title[1] = "Site Map";
URL[1] = "http://www.learnpianoonline.com/sitemap.xml";
nofollow[1] = 0;

title[2] = "About Us";
URL[2] = "http://learnpianoonline.com/aboutus.html";
nofollow[2] = 1;

title[3] = "Contact Us";
URL[3] = "http://www.learnpianoonline.com/contactus.html";
nofollow[3] = 1;

title[4] = "Privacy Policy";
URL[4] = "http://www.learnpianoonline.com/privacypolicy.html";
nofollow[4] = 1;

title[5] = "Guest Book";
URL[5] = "http://www.learnpianoonline.com/guestbookentries.html";
nofollow[5] = 1;

title[6] = "Links";
URL[6] = "http://www.learnpianoonline.com/links.html";
nofollow[6] = 1;

for(i = 0; i < URL.length; i++)
{
    if ( nofollow[i] == 1 )
    { follow = " rel='nofollow'"; }
    else
    { follow = ""; }
	document.write("<a href='"+ URL[i] +"'"+ follow +">"+ title[i] +"</a>");
    if (i < (URL.length - 1)) { document.write(" | "); } 
}

