//Controls and Pre-Caches Literature Bullets  
//THIS SCRIPT FOR ROOT LEVEL PAGES ONLY

if (document.images) {

var dots = new Array()
dots[0] = null
dots[1] = new Image()
dots[1].src = "nav/litbullet.gif"
dots[2] = new Image()
dots[2].src = "nav/litbulletover.gif"

}


// Changes Literature Bullets to rollover state
function dotover(n) {
	eval("document.dot"+n+".src = dots[2].src")
}

// Returns Literature Bullets to off state
function dotout(n) {
	eval("document.dot"+n+".src = dots[1].src")
}