var first=1;
function onfecha(){
			curUrl = document.location.href.split("&");
			document.location = curUrl[0]+'&action=fecha';
 		}

function onprecio(){
			curUrl = document.location.href.split("&");
			document.location = curUrl[0]+'&action=precio';
 		}

function ondispon(){
			curUrl = document.location.href.split("&");
			document.location = curUrl[0]+'&action=disponibilidad';
 		}

function oncateg(){
			curUrl = document.location.href.split("&");
			document.location = curUrl[0]+'&action=categoria';
 		}

function inicioPestanas(){
YAHOO.util.Event.addListener(document.getElementById('img_fecha'), "click", onfecha);
YAHOO.util.Event.addListener(document.getElementById('img_precio'), "click", onprecio);
YAHOO.util.Event.addListener(document.getElementById('img_dispon'), "click", ondispon);
YAHOO.util.Event.addListener(document.getElementById('img_categ'), "click", oncateg);
checkurl();
}

	function Selecciona(id){
		switch (id){
			case 0:
				document.getElementById('pest_fecha').innerHTML='<img src="/images_new/hallazgos/pestanas/fecha_osc.png" alt="Ordenar por fecha" border="0" />';
				document.getElementById('pest_fecha').className='selected';
				break
			case 1:
				document.getElementById('pest_precio').innerHTML='<img src="/images_new/hallazgos/pestanas/precio_osc.png" alt="Ordenar por precio" border="0" />';
				document.getElementById('pest_precio').className='selected';
				break
			case 2:
				document.getElementById('pest_dispon').innerHTML='<img src="/images_new/hallazgos/pestanas/disponible_osc.png" alt="Ordenar por disponibilidad" border="0" />';
				document.getElementById('pest_dispon').className='selected';
				break
			case 3:
				document.getElementById('pest_categ').innerHTML='<img src="/images_new/hallazgos/pestanas/categoria_osc.png" alt="Ordenar por categoria" border="0" />';
				document.getElementById('pest_categ').className='selected';
				break;
		}
	}

	function checkurl ()
	{
		var id0 = document.location.search.substr(1).split('&action=');
		var id = id0[1];
		switch (id){
			case "fecha":
				Selecciona(0)
				break;
			case "precio":
				Selecciona(1)
				break;
			case "disponibilidad":
				Selecciona(2)
				break;
			case "categoria":
				Selecciona(3)
				break;
	}
}

YAHOO.util.Event.onDOMReady(checkurl);
