// JavaScript Document

var imagenumber = 12 ;
var randomnumber = Math.random() ;
var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;
images = new Array
images[1] = "images/resources/worldbook.gif"
images[2] = "images/resources/princetonkids.gif"
images[3] = "../images/ads/springboard.gif"
images[4] = "images/resources/novelistk8.gif"
images[5] = "images/resources/factsonfile.gif"
images[6] = "images/resources/britannica.gif"
images[7] = "images/resources/studentresearch.gif"
images[8] = "images/resources/searchasaurus.gif"
images[9] = "images/resources/kidssearch.gif"
images[10] = "images/resources/literaryreference.gif"
images[11] = "images/resources/pointsofview.gif"
images[12] = "images/resources/ebsco.gif"

var image = images[rand1] ;
var linknumber = 12 ;
var img1 = Math.round( (linknumber-1) * randomnumber) + 1 ;
links = new Array
links[1] = "http://www.worldbookonline.com/"
links[2] = "http://www.princetonkids.org"
links[3] = "teens/homework/images/aboutspringboard.JPG"
links[4] = "http://web.ebscohost.com/novelistk8/search?vid=1&hid=102&sid=f83570d4-1737-48c3-8b5f-40c4cf0a95af%40sessionmgr102"
links[5] = "http://www.fofweb.com/Direct2.asp?ID=17784&ItemID=WE00"
links[6] = "http://library.eb.com/failedlogin?target=/"
links[7] = "http://web.ebscohost.com/src/search?vid=1&hid=13&sid=0d94dd8e-4e66-4d41-acb5-1d8de799ceae%40sessionmgr9"
links[8] = "http://web.ebscohost.com/sas/search?vid=1&hid=102&sid=05fdfc4b-ff42-4c40-8e42-7b4545acab00%40sessionmgr106"
links[9] = "http://web.ebscohost.com/srck5/search?vid=1&hid=13&sid=032db397-4fef-4920-80b3-2de4b61f2ca9%40sessionmgr9"
links[10] = "http://web.ebscohost.com/lrc/search?vid=1&hid=113&sid=4808148f-5f4d-41c1-84ea-f3ffb90db0d7%40sessionmgr102"
links[11] = "http://web.ebscohost.com/pov/search?vid=1&hid=112&sid=cbf61050-2d91-45ea-ad12-3c78580dfabb%40sessionmgr108"
links[12] = "http://web.ebscohost.com/ehost/search?vid=1&hid=102&sid=feeddd17-9ca3-435e-ad4e-c79bd3048f8e%40sessionmgr103"

var link = links[img1];
var titlenumber = 12 ;
var img1 = Math.round( (titlenumber-1) * randomnumber) + 1 ;
titles = new Array
titles[1] = "Online encyclopedia of articles, selected web links, animations, and interactive maps."
titles[2] = "Keeping parents in the know and kids on the go."
titles[3] = "Springboard Homework Assistance, staffed by paid teachers and dedicated community volunteers."
titles[4] = "Provides subject heading access, reviews and annotations for fiction titles that are popular with young readers as well as titles that are appropriate for classroom use."
titles[5] = "Reference database in science, history, literature, geography, health and career guidance, plus a curriculum resource center for grades K-5 and 6-12."
titles[6] = "The entire encyclopedia plus a dictionary, thesaurus, atlas, timelines, video clips and rated and reviewed subject related web sites."
titles[7] = "Student Research Center from Ebsco"
titles[8] = "General database for elementary students with a general encyclopedia, an animal encyclopedia, a dictionary, Primary and Middle School Search, and lots of pictures."
titles[9] = "Kid's search from Ebsco"
titles[10] = "Full text from over 1,000 books and monographs, major literary encyclopedias and reference works, hundreds of literary journals, and unique sources."
titles[11] = "A database designed to assist students and researchers in understanding the full scope of controversial subjects."
titles[12] = "Full text of about 70 popular elementary school magazines."


var title = titles[img1];
document.write('<a href="' + link + '" title="' + title + '"><img src="' + image + '" border="0"></a>') ;

