// JavaScript Document

if (document.images) { 

	img1on = new Image();
	img1on.src = "images/menu_home2.jpg"; 
	img1off = new Image(); 
	img1off.src = "images/menu_home1.jpg";
	
	img2on = new Image();
	img2on.src = "images/menu_neighbor2.jpg"; 
	img2off = new Image(); 
	img2off.src = "images/menu_neighbor1.jpg";
	
	img3on = new Image();
	img3on.src = "images/menu_realtor2.jpg"; 
	img3off = new Image(); 
	img3off.src = "images/menu_realtor1.jpg";
	
	img4on = new Image();
	img4on.src = "images/menu_sub2.jpg"; 
	img4off = new Image(); 
	img4off.src = "images/menu_sub1.jpg"; 
	
	img5on = new Image();
	img5on.src = "images/menu_about2.jpg"; 
	img5off = new Image(); 
	img5off.src = "images/menu_about1.jpg";  
	
	img6on = new Image();
	img6on.src = "images/menu_contact2.jpg"; 
	img6off = new Image(); 
	img6off.src = "images/menu_contact1.jpg";  
 
}
function imgOn(imgName) {
	if (document.images) {
	document[imgName].src = eval(imgName + "on.src");}
}
function imgOff(imgName) {
	if (document.images) {
	document[imgName].src = eval(imgName + "off.src");}
}

var win = null;
function NewWindow(wizpage, wizname, w, h, scroll){
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height=' + h + ',width=' + w + ',top= 100,' + TopPosition + ',left=' + LeftPosition + ',scrollbars=' + scroll + ',resizable'
	win = window.open(wizpage, wizname, settings)
}


var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		pre_menu_home2 = newImage('images/menu_home2.jpg');
		pre_menu_neighbor2 = newImage('images/menu_neighbor2.jpg');
		pre_menu_realtor2 = newImage('images/menu_realtor2.jpg');
		pre_menu_sub2 = newImage('images/menu_sub2.jpg');
		pre_menu_about2 = newImage('images/menu_about2.jpg');
		pre_menu_contact2 = newImage('images/menu_contact2.jpg');
		preloadFlag = true;
	}
}