
<!--
function newImage(arg) 
{
	if (document.images) 
	{
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}



function changeImages() 
{
	if (document.images && (preloadFlag == true)) 
	{
		for (var i=0; i<changeImages.arguments.length; i+=2) 
		{
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}



var preloadFlag = false;

function preloadImages() 
{
	if (document.images) {
	h_nav1_over = newImage("../images/h_nav1-over.gif");
	h_nav1_down = newImage("../images/h_nav1-down.gif");
	h_nav2_over = newImage("../images/h_nav2-over.gif");
	h_nav2_down = newImage("../images/h_nav2-down.gif");
	h_nav3_over = newImage("../images/h_nav3-over.gif");
	h_nav3_down = newImage("../images/h_nav3-down.gif");
	h_nav4_over = newImage("../images/h_nav4-over.gif");
	h_nav4_down = newImage("images/h_nav4-down.gif");
	h_nav5_over = newImage("images/header_about_on.jpg");
	h_nav6_over = newImage("images/header_leasing_button_on.jpg");
	h_nav7_over = newImage("images/header_contact_on.jpg");
	h_nav8_over = newImage("images/header_home_on.jpg");
	preloadFlag = true;
	}
}


function MM_openBrWindow(theURL,winName,features) 
{ //v2.0
	window.open(theURL,winName,features);
}














function changeBg(td1, td2, td3) 
{

	
	p1 = document.getElementById(td1);
	p2 = document.getElementById(td2);
	p3 = document.getElementById(td3);

	p1.style.background = "yellow";
	p2.style.background = "yellow";
	p3.style.background = "yellow";
	
	
}
function originalBg(td1, td2, td3) 
{

	
	p1 = document.getElementById(td1);
	p2 = document.getElementById(td2);
	p3 = document.getElementById(td3);

	p1.style.background = "#EEEEEE";
	p2.style.background = "#FFEAD5";
	p3.style.background = "#D5EAFF";
	
	
}










// -->
