function load_page(o)
{
	// Load page.
	window.location = o.url
}
function show_section(o)
{
    window.document.all('Property_Section').style.display = 'none';
    window.document.all('Association_Section').style.display = 'none';
    window.document.all('Investment_Section').style.display = 'none';
    
    window.document.all(o.section).style.display = 'inline';
}

function load_building(o)
{
	window.location = '../property/property.aspx?site_id=' + o.site_id 
}

function menu_effect(o, flag)
{
    var oSubMenu = window.document.all(o.sub_menu)
    
	switch (flag)
	{
		case 'over':
		    if (o.sub_menu == null) 
		        window.document.all('menu_search').style.display = 'none';
		        
		    if (oSubMenu.style.display != 'inline')
	            oSubMenu.style.display = 'inline';
	            
			o.style.color = 'white';
			o.style.cursor = 'hand';
			break;
		case 'out':
			o.style.color = '#36688C';
			o.style.cursor = '';
			break;
	}
}

function submenu_effect(o, flag)
{
    var oParent = window.document.all(o.parent)
    
	switch (flag)
	{
		case 'over':
		    oParent.style.color = 'white';
			o.style.color = 'white';
			o.style.cursor = 'hand';
			break;
		case 'out':
		    oParent.style.color = ''
			o.style.color = '#36688C';
			o.style.cursor = '';
			break;
	}
}

function clear_submenus()
{
    window.document.all('menu_search').style.display = 'none';
    window.document.all('menu_services').style.display = 'none';
    window.document.all('dummy').style.display = 'inline';
}


function row_effect(o, flag)
{
	switch (flag)
	{
		case 'over':
			o.style.backgroundColor = '#E1EFF4';
			o.style.color = '0099DA';
			o.style.cursor = 'hand';
			break;
		case 'out':
			o.style.backgroundColor = '';
			o.style.color = 'black';
			o.style.cursor = '';
			break;
	}
}
