
		$(document).ready(function(){
			$('input#postal').clearingInput();
		});

	

		$(document).ready(function(){
			$('#asistencia form input').clearingInput();
			$("#accidentes a").click(function(){
					$("#automoviles, #accidentes").animate( { marginLeft:"-908px" }, { duration:1200 } );
			});
			$("#automoviles a").click(function(){
				$("#automoviles, #accidentes").animate( { marginLeft:"0px" }, { duration:1200 } );
			});
			$("div.descripcion:last, .boxTablas .tablas table:last").addClass('ultima');
		});

	

	$(document).ready(function(){
		$('button.btnDonar, ul.secciones li, ul#solapas li').hover(function(){
			$(this).addClass('hover');
				},function(){
			$(this).removeClass('hover');
		});
		$('.banner').selectbox();
    	$('.destacadoSelect').selectbox({
        inputClass: 'selectbox1',
        containerClass: 'selectbox1-wrapper'
    	});
		$('.combo').selectbox({
        inputClass: 'selectbox2',
        containerClass: 'selectbox2-wrapper'
    	});
    	
    	$('.formMenu li').click(function(){
    		var e=$(this);
    		location.href=e.attr("id");
    	}); 
		$('.menuContenidos ul').accordion({
			active: 1,			
		
			autoheight: false
		});
	});

	
function hideFocusBorders(){
var theahrefs = document.getElementsByTagName("a");
if (!theahrefs){return;}
for(var x=0;x!=theahrefs.length;x++){
theahrefs[x].onfocus = function stopLinkFocus(){this.hideFocus=true;};
}
}