
//Top nav image preloads
if (document.images) {

	var gettoknow_on = new Image();
	gettoknow_on.src = "img/get_to_know_ROLL.jpg";
	var gettoknow_off = new Image();
	gettoknow_off.src = "img/get_to_know.jpg";
	
	var smbusiness_on = new Image();
	smbusiness_on.src = "img/small_business_ROLL.jpg";
	var smbusiness_off = new Image();
	smbusiness_off.src = "img/small_business.jpg";

	var progress_on = new Image();
	progress_on.src = "img/progress_to_real_ROLL.jpg";
	var progress_off = new Image();
	progress_off.src = "img/progress_to_real.jpg";

	var highbandwidth_on = new Image();
	highbandwidth_on.src = "img/high_bandwidth_version_ROLL.jpg";
	var highbandwidth_off = new Image();
	highbandwidth_off.src = "img/high_bandwidth_version.jpg";

	var back_on = new Image();
	back_on.src = "img/back_ROLL.jpg";
	var back_off = new Image();
	back_off.src = "img/back.jpg";
	
	var next_on = new Image();
	next_on.src = "img/next_ROLL.jpg";
	var next_off = new Image();
	next_off.src = "img/next.jpg";

	var letsstart_on = new Image();
	letsstart_on.src = "img/lets_start_ROLL.jpg";
	var letsstart_off = new Image();
	letsstart_off.src = "img/lets_start.jpg";

	var benefits_on = new Image();
	benefits_on.src = "img/benefits_ROLL.jpg";
	var benefits_off = new Image();
	benefits_off.src = "img/benefits.jpg";

	var accessing_on = new Image();
	accessing_on.src = "img/accessing_accounts_ROLL.jpg";
	var accessing_off = new Image();
	accessing_off.src = "img/accessing_accounts.jpg";

	var paying_on = new Image();
	paying_on.src = "img/paying_bills_ROLL.jpg";
	var paying_off = new Image();
	paying_off.src = "img/paying_bills.jpg";

	var transferring_on = new Image();
	transferring_on.src = "img/transferring_funds_ROLL.jpg";
	var transferring_off = new Image();
	transferring_off.src = "img/transferring_funds.jpg";

	var customerservice_on = new Image();
	customerservice_on.src = "img/customer_service_ROLL.jpg";
	var customerservice_off = new Image();
	customerservice_off.src = "img/customer_service.jpg";

}

//Rollover functions
function rollOver(which){
	//alert("yes!");
	if(document.images){
		document.images[which].src = eval(which + "_on.src");		
	}
}

function rollOut(which){
	if(document.images){
		document.images[which].src = eval(which + "_off.src");
	}
}

function LoadParent(url) {
	if (window.opener && window.opener.open && !window.opener.closed) {
		//alert("Parent window exists!");
		window.opener.focus();
		window.opener.location = url;
		//self.close();
	}
	else {
		//alert("Parent window DOES NOT exist!");
		window.open(url);
		//self.close();
	}
}
