<!-- If you don't do JavaScript, no peeking 




function navLoad() {

var navPicts=new Array("login", "login_roll" , "home", "home_roll", "info", "info_roll", "products", "products_roll", "apps", "apps_roll", "lit", "lit_roll", "faq", "faq_roll", "contacts", "contacts_roll")

if (document.images) {
var pre=new Array()
for (var x=0; x<=15; x++){

pre[x] =new Image()
pre[x].src="images/nav/" + navPicts[x] + ".gif"
}
}



}





function navRoll (image_name) {
	if (document.images) {
	document.images[image_name].src='images/nav/' + image_name + '_roll.gif';
	}
}
	
function navNormal (image_name) {
		if (document.images) {
		document.images[image_name].src='images/nav/' + image_name + '.gif';
	}
}






//allright, go ahead and peek-->



