Código:
  
 $(document).ready(function(){
	
	/*Sonidos*/
	$("#boton1").mouseover(function(){
		$('embed').remove();
		$('body').append('<embed src="./sonido/beep.mp3" autostart="true" hidden="true" loop="false">');  
	});
	$("#boton2").mouseover(function(){
		$('embed').remove();
		$('body').append('<embed src="./sonido/boton.wav" autostart="true" hidden="true" loop="false">');    
	});
	$("#boton3").mouseover(function(){
		$('embed').remove();
		$('body').append('<embed src="./sonido/boton.wav" autostart="true" hidden="true" loop="false">');     
	});
	$("#boton4").mouseover(function(){
		$('embed').remove();
		$('body').append('<embed src="./sonido/boton.wav" autostart="true" hidden="true" loop="false">');     
	});
	
	/*Efectos de entrada*/
	
	$("#contenido").show(1000);
	$("#menu").show(1000);
	$("#banner").show(1000);
	$("#barra").show(1000);
	
	/*Efectos de transicion*/
	
	$("#boton1").click(function(){
		$("#def").show("slow");
		$("#hist").hide("slow");
		$("#co").hide("slow");
		$("#pra").hide("slow");
	});
	$("#boton2").click(function(){
		$("#def").hide("slow");
		$("#co").hide("slow");
		$("#hist").show("slow");
		$("#pra").hide("slow");
	});
	$("#boton3").click(function(){
		$("#def").hide("slow");
		$("#pra").hide("slow");
		$("#hist").hide("slow");
		$("#co").show("slow");
	}); 
	$("#boton4").click(function(){
		$("#def").hide("slow");
		$("#hist").hide("slow");
		$("#co").hide("slow");
		$("#prac").show("slow");
		$("#chk").show("slow");
	});
	
	/*Procesos*/
	
	$("#chk").click(function(){
		$("#resp_1-1").hide("fast");
		$("#resp_1-2").hide("fast");
		$("#resp_2-1").hide("fast");
		$("#resp_2-2").hide("fast");
		$("#resp_3-1").hide("fast");
		$("#resp_3-2").hide("fast");
		$("#resp_4-1").hide("fast");
		$("#resp_4-2").hide("fast");
		$("label").hide("fast");
		if($("#resp_1-1").attr('checked')){
			$("#1q").append('<img src="b.png" alt="bien" width="100px" height="100" align="center">');
			}
		if($("#resp_1-2").attr('checked')){
			$("#1q").append('<img src="error1.png" alt="bien" width="100px" height="100" align="center">');
			}
		if($("#resp_2-1").attr('checked')){
			$("#2q").append('<img src="b.png" alt="bien" width="100px" height="100" align="center">');
			}
		if($("#resp_2-2").attr('checked')){
			$("#2q").append('<img src="error1.png" alt="bien" width="100px" height="100" align="center">');
			}
		if($("#resp_3-1").attr('checked')){
			$("#3q").append('<img src="b.png" alt="bien" width="100px" height="100" align="center">');
			}
		if($("#resp_3-2").attr('checked')){
			$("#3q").append('<img src="error1.png" alt="bien" width="100px" height="100" align="center">');
			}
		if($("#resp_4-1").attr('checked')){
			$("#4q").append('<img src="b.png" alt="bien" width="100px" height="100" align="center">');
			}
		if($("#resp_4-2").attr('checked')){
			$("#4q").append('<img src="error1.png" alt="bien" width="100px" height="100" align="center">');
			}
	});
});
 

