/*
Autor: Cruz Rosales
Fecha: 20080430-1907
Contacto: crosalesc@gmail.com
~by__ _  __  |^|_  __  _ __ _ __  _   _ _ __   __
 / _ ` | _  \  __| _  \ '__| '_  \ | | | '_  \´  \
| (_)  | __ /  |_| ___/ |  | | | | |_| | | | | | |
 \ __,_|\___|\___|\___|_|  |_| |_|\___/|_| |_| |_|crc<>
*/
var cat2 = [
	[
		{v:'herdez_des.html', d:'Herdez'},
		{v:'herdez_fuerte_des.html', d:'Herdez del Fuerte'},
		{v:'herdez_soy_frut_des.html', d:'Soy Frut'},
		{v:'herdez_jugo8v_des.html', d:'Jugo de 8 Verduras'},
	],
	[
		{v:'champinones_des.html', d:'Champiñones'},
		{v:'legumbres_des.html', d:'Legumbres'},
		{v:'frutas_des.html', d:'Frutas'},
		{v:'j8v_des.html', d:'Jugo de 8 Verduras'},
		{v:'almejito_des.html', d:'Almejito'},
		{v:'jugos_des.html', d:'Jugos y Néctares'},
		{v:'bebidas_soya_des.html', d:'Bebidas de soya'},
		{v:'cocteles_des.html', d:'Cócteles'},
		{v:'salsas_des.html', d:'Salsas'},
		{v:'pure_des.html', d:'Puré'},
		{v:'atun_des.html', d:'Atún'},
		{v:'vinagre_des.html', d:'Vinagre'}
	],
];

function fresetl(l) {
	while (1 < l.options.length) {
		l.options[1] = null;
	}
}

function fscat (e) {
	fresetl(document.lcat2);
	var i = parseInt(document.lcat1.options[document.lcat1.selectedIndex].value);
	if (0 > i)
		return;
	var k;
	for (k = 0; k < cat2[i].length; k++) {
		document.lcat2.options[1+k] = new Option(cat2[i][k].d, cat2[i][k].v);
	}
}

function fselect (e) {
	$('detalle').src = document.lcat2.options[document.lcat2.selectedIndex].value;
}

document.observe('dom:loaded', function () {
	document.lcat1 = $('cat1');
	document.lcat2 = $('cat2');
	document.lcat1.observe('change', fscat);
	document.lcat2.observe('change', fselect);
});
