
			           jQuery(document).ready(function(){

                        jQuery("#verTrabajo").click(function(e){
					     e.preventDefault();
					       jQuery(".categoriaMotos").hide();
					       jQuery("#trabajo").show();
                         });

				         jQuery("#verTodoTerreno").click(function(e){
					     e.preventDefault();
					       jQuery(".categoriaMotos").hide();
					       jQuery("#todo-terreno").show();
                         });

                         jQuery("#verMotocross").click(function(e){
					     e.preventDefault();
					       jQuery(".categoriaMotos").hide();
					       jQuery("#motocross").show();
                         });

                         jQuery("#verDualSport").click(function(e){
					     e.preventDefault();
					       jQuery(".categoriaMotos").hide();
					       jQuery("#dual-sport").show();
                         });

                         jQuery("#verSportBike").click(function(e){
					     e.preventDefault();
					       jQuery(".categoriaMotos").hide();
					       jQuery("#sport-bike").show();
                         });

                         jQuery("#verCrusier").click(function(e){
					     e.preventDefault();
					       jQuery(".categoriaMotos").hide();
					       jQuery("#crusier").show();
                         });

                         jQuery("#verAtv").click(function(e){
					     e.preventDefault();
					       jQuery(".categoriaMotos").hide();
					       jQuery("#atv").show();
                         });

                         jQuery("#verScooter").click(function(e){
					     e.preventDefault();
					       jQuery(".categoriaMotos").hide();
					       jQuery("#scooter").show();
                         });

                       });
		               
