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

title[0] = "MEET YOUR TEACHER";
URL[0] = "http://www.learnpianoonline.com/aboutus.html";

title[1] = "LESSON BLOG & FAQ's";
URL[1] = "http://www.learnpianoonline.com/blog/";

title[2] = "FEATURED SONGS";
URL[2] = "http://www.learnpianoonline.com/christmas_club_09.html";




for(i = 0; i < URL.length; i++)
{
	document.writeln("<li><a href='"+ URL[i] +"'>"+ title[i] +"</a></li>");
}

