function loadTips(){
// the tips data
var arrTips = new Array();
arrTips[0] = new Array("14", "About Children\'s Catalog", "We offer a special edition of the catalog, designed for school aged children?", "/kids-teens/parents-caregivers/books-resources/Default.htm");
arrTips[1] = new Array("47", "Audiobooks and E-books", "Download audiobooks and e-books for free!", "/books-materials/audiobooks-ebooks/Default.htm");
arrTips[2] = new Array("26", "Series on NoveList", "Follow the story and characters in a series from one book to the next in the right order.", "/services/help/know/series-on-novelist.htm");
arrTips[3] = new Array("33", "Tax Time", "Print and online forms, information, free tax preparation help from volunteers and more at your library.", "/services/research-corner/subject-links/tax-time.htm");

var tipItems = arrTips.length;
var randomNumber = Math.round( (tipItems-1) * Math.random() );
// get the location on the page to load the tip
var handle=document.getElementById("did_you_know");
if (handle) 
{
var content = "";
content += "<p>" + arrTips[randomNumber][2] + "<a href=\"" + arrTips[randomNumber][3] + "\">&nbsp;Learn More &raquo;</a></p>";
handle.innerHTML = content;
}
}

