<!--

function changeSearchImage(objeto)
{
	var ident = objeto.id;
	var imagen = MM_findObj("img_"+ident);
	var imgpath = "images/"+ident+"/"+objeto.options[objeto.selectedIndex].value+".jpg";
	if(objeto.options[objeto.selectedIndex].value != "")
		imagen.src = imgpath;
	else
		imagen.src = "images/img_elpavo.gif";
}

function resetAll()
{
	document.forms["buscador"].reset();
	changeSearchImage(document.forms["buscador"].categoria);
	changeSearchImage(document.forms["buscador"].producto);
	changeSearchImage(document.forms["buscador"].ingrediente);
	
}

function verify_busq()
{
	if(document.forms["buscador"].libre.value=="Escribe lo que buscas")
		document.forms["buscador"].libre.value="";
	document.forms["buscador"].submit();
}

//-->