function init() 
{
	changeStyleById();
	hideAddress();	
}

/* change style by id */
function changeStyleById(id,prop,newStyle)
{ 
   	document.getElementById(id).style[prop] = newStyle;
} 

function showAddress()
{
	document.getElementById('newAddress').innerHTML = 'As of June 5, 2010 our new address and phone numbers will be:<br />20813 Stevens Creek Blvd - Suite 200<br />Cupertino, CA 95014<br />Phone (408) 252-6200<br />Fax (408) 252-6220';
}
function hideAddress()
{
	document.getElementById('newAddress').innerHTML = 'We\'ve Moved! Click here for our new address.';
}

