var menu1 = new Array(
	Array( 'Urbano', 'urbano.html' ),
	Array( 'Interurbano', 'interurbano.html' ),
	Array( 'Discrecional', 'discrecional.html' ),
	Array( 'City Tours', 'citytours.html' ),
	Array( '1 a 8 Plazas', '8plazas.html' ),
	Array( 'Marítimo', 'maritimo.html' )
	);
	
function toggleMenu( menu )
{
	var layerCode = '<div id="subMenu" style="position:absolute;left:100px;top:100px"></div>';
	document.write( layerCode );
}
	
function display( layerId )
{
	var elem = document.getElementById( layerId );
	elem.style.display = 'block';
}

function setMenuHover( item, hover )
{
	if( hover )
	{
		item.style.backgroundImage = 'url("img/bar2.png")';
		item.style.cursor = 'pointer';
		item.style.color = '#ffffff';
		item.style.fontWeight = 'bold';
		item.style.textDecoration = 'none';
	}
	else
	{
		item.style.backgroundImage = 'url("img/bar1.png")';
		item.style.cursor = 'arrow';
		item.style.color = '#d80000';
		item.style.fontWeight = 'bold';
		item.style.textDecoration = 'none';
	}
}

function setSubHover( item, hover )
{
	if( hover )
	{
		item.style.backgroundColor = '#ffffff';
		item.style.color = '#ff0000';
		item.style.cursor = 'pointer';
	}
	else
	{
		item.style.backgroundColor = '#ff0000';
		item.style.color = '#ffffff';
		item.style.cursor = 'arrow';
	}
}