
jQuery(document).ready(function(){

    jQuery(".galeria_hotel .foto2").hide();
    jQuery(".galeria_hotel .foto3").hide();
    jQuery(".galeria_hotel .foto4").hide();
    jQuery("#texto2").hide();
    jQuery("#texto3").hide();
    jQuery("#texto4").hide();
    
    
    jQuery("#fotos_hotel .btn1").click(function(){
        jQuery(".galeria_hotel .foto1").hide();
        jQuery(".texto1").hide();
		jQuery(".galeria_hotel .foto2").show();
        jQuery(".texto2").show();
		jQuery(".galeria_hotel .foto3").hide();
        jQuery("#texto3").hide();
		jQuery(".galeria_hotel .foto4").hide();
        jQuery("#texto4").hide();
	
        return false;
        
    });
    jQuery("#fotos_hotel .btn2").click(function(){
        jQuery(".galeria_hotel .foto1").hide();
        jQuery(".texto1").hide();
		jQuery(".galeria_hotel .foto2").hide();
        jQuery(".texto2").hide();
		jQuery(".galeria_hotel .foto3").show();
        jQuery("#texto3").show();
		jQuery(".galeria_hotel .foto4").hide();
        jQuery("#texto4").hide();
        
         return false;
    });
    jQuery("#fotos_hotel .btn3").click(function(){
        jQuery(".galeria_hotel .foto1").hide();
        jQuery(".texto1").hide();
		jQuery(".galeria_hotel .foto2").hide();
        jQuery(".texto2").hide();
		jQuery(".galeria_hotel .foto3").hide();
        jQuery("#texto3").hide();
		jQuery(".galeria_hotel .foto4").show();
        jQuery("#texto4").show();
        
            
         return false;
    });
    
    
});

