$(document).ready(function () {

	$('.pesquisa-avan').click(function() {
		/*if ($('.pesquisa-avan-opcoes').css('display') == 'block') {
			//$('#buscarLote').find('input').each(function () {
				$(this).val('');
			});
			$('#buscarLote').find('input:checkbox').each(function () {
				$(this).attr('checked', false);
			});
		}*/
		$('.pesquisa-avan-opcoes').toggle('slown');
		return false;
	});

	$('#quantidadePagina').change(function () {
		document.location.href = $(this).val();
	});

	$('#buscarLote').submit(function () {
		var uri = document.location.href;

		try {
			if (URL_BUSCA != undefined) {
				uri += URL_BUSCA;
			}
		} catch(e) { }

		try {
			uri = uri.replace(/lote\/exibir\/[0-9]*/, 'lotes/listar/' + LEI_ID).replace('#lances', '');
			uri = uri.replace(/lote\/exibir\/[0-9]*\//, '/lotes/listar/' + LEI_ID);
		} catch(e) { }
		
		// limpar url
		uri = uri.replace('#', '').replace(/buscar\/.*/, '');
		
		if ($('#buscar').val() != '') {
			uri = subStituirValor('buscar', $('#buscar').val(), uri);
		}
		if ($('#inicio').val() != '' && $('#inicio').val() != undefined) {
			uri = subStituirValor('inicio', $('#inicio').val(), uri);
		}
		if ($('#fim').val() != '' && $('#fim').val() != undefined) {
			uri = subStituirValor('fim', $('#fim').val(), uri);
		}
		if ($('#tipoBusca').val() != '' && $('#tipoBusca').val() != undefined) {
			uri = subStituirValor('tipo', $('#tipoBusca').val(), uri);
		}
		$('#buscarLote').find(':checkbox').each(function() {
			if ($(this).attr('checked') && $(this).val() != undefined) {
				uri = subStituirValor($(this).attr('name'), $(this).val(), uri);
			}
		});

		document.location.href = uri;
		return false;
	});

	function subStituirValor(parametro, valor, string)
	{
		string = string.match(RegExp('(.*[a-z0-9])'))[0] + '/';
		if (string.match(RegExp(parametro + '(/.*/)')) != null) {
			return string.replace(RegExp(parametro + '/.*/'), parametro + '/' + valor + '/');
		} else {
			return string + parametro + '/' + valor + '/';
		}
	}
});