function expand(s)
{
  var td = s;
  var d = td.getElementsByTagName("div").item(0);

  document.body.style.cursor = 'hand';
  td.className = "menuHover";
  d.className = "menuHover";
}

function collapse(s)
{
  var td = s;
  var d = td.getElementsByTagName("div").item(0);

  document.body.style.cursor = 'default';
  td.className = "menuNormal";
  d.className = "menuNormal";
}

function navigate(s,page)
{
	//S is the string to be concatenated to the URL
	//Page is the indicator of which menu bar is bieng used
	//PS = Productos y Servicios
	//OS = Orientacion de Seguros

	switch (page)
	{
		case "PS": location.href = "/segurostriples/productosyservicios/" + s;
					break;
		case "OS": location.href = "/segurostriples/orientaciondeseguros/" + s;
					break;
	}
}

function changeActive(obj)
{	
	//alert(obj)
	
	switch (obj)
	{
		case "PS": PS.className="activo";
					break;
		case "A": A.className="activo";
					break;
		case "SN": SN.className="activo";
					break;
		case "OS": OS.className="activo";
					break;
	}
	
 }