var imagen=new Array("nuestra_empresa","servicios","productos","promociones","contacto","atencion");
var ruta="images/";

function menu_over(img)
{
document.images["i"+img].src=ruta+imagen[img]+'_over.png';
}
function menu_out(img)
{
document.images["i"+img].src=ruta+imagen[img]+'.png';
}
/////////////////////////////////////////////////////////////////////////////////////////
function det_over(img)
{
document.images["det"+img].src=ruta+'detalles_over.png';
}
function det_out(img)
{
document.images["det"+img].src=ruta+'detalles.png';
}
/////////////////////////////////////////////////////////////////////////////////////////
function carr_over(img)
{
document.images["carr"+img].src=ruta+'carrito_over.png';
}
function carr_out(img)
{
document.images["carr"+img].src=ruta+'carrito.png';
}
/////////////////////////////////////////////////////////////////////////////////////////


function report_expand(id, newC) {
	var i=0;
	var obj;
	while (obj = document.getElementById(id+"_"+i)) {
		if (newC) { 
			obj.className = newC; 
		} else if (obj.className == 'show') { 
			obj.className = 'hide'; 
		} else if (obj.className == 'hide') { 
			obj.className = 'show';
		} else if (obj.className == 'tdwn') { 
			obj.className = 'tup'; 
		} else if (obj.className == 'tup') { 
			obj.className = 'tdwn'; 
		} else if (obj.className == 'sel') { 
			obj.className = 'nosel'; 
		}  else if (obj.className == 'nosel') { 
			obj.className = 'sel'; 
		}
		i++;
	}
}

