window.addEvent('domready', function()
{
	$('reset-superficie').set('value', 0);
	$('marca-sel').set('value', 0);
	$('reset-tipos').set('value', 0);
	var superficie = new Selects('por-superficie', 
	{
		url: 'buscador-superficies-ajax.php',
		onInit: function()
		{
			$('por-superficie-lnk').setStyle('cursor', 'default');
			$('por-superficie-lnk').set('href', '#');
			$('por-superficie-lnk').empty();
			$('por-superficie-lnk').adopt(new Element('img', {'src': 'img/btn_aceptar_gris.gif'}));
		},
		onComplete: function(value)
		{
			$('por-superficie-lnk').setStyle('cursor', 'pointer');
			$('por-superficie-lnk').set('href', 'productos_buscador_ficha.php?t=1&c=' + value);
			$('por-superficie-lnk').empty();
			$('por-superficie-lnk').adopt(new Element('img', {'src': 'img/btn_aceptar2.gif'}));
		}
	});
	
	var tipo = new Selects('por-tipo', 
	{
		url: 'buscador-tipo-ajax.php',
		onInit: function()
		{
			$('por-tipo-lnk').setStyle('cursor', 'default');
			$('por-tipo-lnk').set('href', '#');
			$('por-tipo-lnk').empty();
			$('por-tipo-lnk').adopt(new Element('img', {'src': 'img/btn_aceptar_gris.gif'}));
		},
		onComplete: function(value)
		{
			$('por-tipo-lnk').set('href', 'productos_buscador_ficha.php?t=2&c=' + value);
			$('por-tipo-lnk').setStyle('cursor', 'pointer');
			$('por-tipo-lnk').empty();
			$('por-tipo-lnk').adopt(new Element('img', {'src': 'img/btn_aceptar2.gif'}));
		}
	});
	
	var marca = new Selects('por-marca', 
	{
		url: 'buscador-marca-ajax.php',
		onInit: function()
		{
			marca.options.extraData = '&marca=' + $('marca-sel').get('value');
			$('por-marca-lnk').setStyle('cursor', 'default');
			$('por-marca-lnk').set('href', '#');
			$('por-marca-lnk').empty();
			$('por-marca-lnk').adopt(new Element('img', {'src': 'img/btn_aceptar_gris.gif'}));
			
			if($('marca-sel').get('value') != 0 && $$('#por-marca-2 select')[0]!= undefined && $$('#por-marca-2 select')[0].get('value') == 0) {
				$('por-marca-lnk').set('href', 'productos_buscador_ficha.php?t=3&m=' + $('marca-sel').get('value'));
				$('por-marca-lnk').setStyle('cursor', 'pointer');
				$('por-marca-lnk').empty();
				$('por-marca-lnk').adopt(new Element('img', {'src': 'img/btn_aceptar2.gif'}));
			}
		},
		onChange: function()
		{
			marca.options.extraData = '&marca=' + $('marca-sel').get('value');
		},
		onComplete: function(value)
		{
			$('por-marca-lnk').set('href', 'productos_buscador_ficha.php?t=3&m=' + $('marca-sel').get('value') + '&c=' + value);
			$('por-marca-lnk').setStyle('cursor', 'pointer');
			$('por-marca-lnk').empty();
			$('por-marca-lnk').adopt(new Element('img', {'src': 'img/btn_aceptar2.gif'}));
		}
	});
});

