﻿$(document).ready(function() {

		//inicializar selects
			if($('#ano').length > 0)
				$('#ano').get(0).selectedIndex=-1;
			if($('#medioP').length > 0)
				$('#medioP').get(0).selectedIndex=-1;
			if($('#mes').length > 0)
				$('#mes').get(0).selectedIndex=-1;

		//oculta y muestra el buscador
		$('#buscar').click(function(){
			if($('#partesBusqueda').css('display')=="none")
				$('#partesBusqueda').show('slow');
			else
				$('#partesBusqueda').hide('slow');
		});
		ajaxLinks();


		$('#buscador select').change(function(e){
			e.preventDefault();
			var params = {};
			params['parent']=padre;
			if($('#ano').get(0).selectedIndex!=-1)
				params['ano'] = $('#buscador #ano').val();
			if($('#mes').get(0).selectedIndex!=-1)
				params['mes'] = $('#buscador #mes').val();
			if($('#medioP').length > 0)
				if($('#medioP').get(0).selectedIndex!=-1)
					params['medio'] = $('#buscador #medioP').val();
			$.ajax({
				url: 'index.php?id=103',
				dataType: 'text',
				data: params,
				success: function(response){
					//$("#loading").hide('slow');
					$('#menu-derecho').show('slow').html(response);
					ajaxLinks();
				}
			});
			
		});	
});