
function printMe() {
	
	window.print()

}




function loadImages()	{
	this[1] = new Image()
	this[1].src = "images/bsp-main-nav-mo_01.jpg"
	this[2] = new Image()
	this[2].src = "images/bsp-main-nav-mo_02.jpg"
	this[3] = new Image()
	this[3].src = "images/bsp-main-nav-mo_03.jpg"
	this[4] = new Image()
	this[4].src = "images/bsp-main-nav-mo_04.jpg"
	this[5] = new Image()
	this[5].src = "images/bsp-main-nav-mo_05.jpg"
	this[6] = new Image()
	this[6].src = "images/bsp-main-nav-mo_06.jpg"
	this[7] = new Image()
	this[7].src = "images/bsp-main-nav-mo_07.jpg"

}

if (document.images)	{	loadImages()	}

function navOn(imgName) {
	
	var fixedName = "nav_" + imgName;
	
	if (imgName == "01")	{	document.images[fixedName].src = this[1].src	}
	if (imgName == "02")	{	document.images[fixedName].src = this[2].src	}
	if (imgName == "03")	{	document.images[fixedName].src = this[3].src	}
	if (imgName == "04")	{	document.images[fixedName].src = this[4].src	}
	if (imgName == "05")	{	document.images[fixedName].src = this[5].src	}
	if (imgName == "06")	{	document.images[fixedName].src = this[6].src	}
	if (imgName == "07")	{	document.images[fixedName].src = this[7].src	}
}

function navOff(imgName) {
	var fixedName = "nav_" + imgName;
	document.images[fixedName].src = "images/bsp-main-nav_" + imgName + ".jpg"
}


