// JavaScript Document
function olFuncs() {
	if(typeof loadPicture == 'function') { 
	  loadPicture(dailyImage);
	}
	
	preloadimages("../desimage/signupmou.jpg", "../desimage/menubgmou.jpg");	
}

function showTerms() {
	var add = document.getElementById('Terms');
	var add2 = document.getElementById('Application');
	
	if(add.style.display == "none") {
		add.style.display = "block"
		add2.style.display = "none"
	}
	else {
		add.style.display = "none"
		add2.style.display = "block"
	}
		
}

function applySwap(box) {
	document.getElementById('box1').style.display = "none";
	document.getElementById('box2').style.display = "none";
	document.getElementById('box3').style.display = "none";
	
	document.getElementById(box).style.display = "block";		
}

var myimages=new Array()
function preloadimages(){
for (i=0;i<preloadimages.arguments.length;i++){
myimages[i]=new Image()
myimages[i].src=preloadimages.arguments[i]
}
}