function hl_button(button_div)
{
	button_div.style.background = 'url(img/buttons/' + button_div.id + '_.jpg)';
	button_div.style.cursor='pointer';
}

function nohl_button(button_div)
{
	button_div.style.background = 'url(img/buttons/' + button_div.id + '.jpg)';
	button_div.style.cursor='default';
}

function hl_link(button_div)
{
	button_div.style.cursor='pointer';
}

function nohl_link(button_div)
{
	button_div.style.cursor='default';
}

function goToPage(name)
{
	document.location.href= name + '.html';	
}

function goToPhpPage(name)
{
	document.location.href= name + '.php';	
}

function switchMap(elem)
{
	elem.style.display = 'none';
	var divMap = document.getElementById('gMap');
	divMap.style.display = 'block';
	
}
