function bt_remove_active_tabs(){
    $('#hotel_description_btn').removeClass('tab_active');
    $('#hotel_facultative_trip_btn').removeClass('tab_active');
    $('#hotel_gallery_btn').removeClass('tab_active');
    $('#hotel_opinion_btn').removeClass('tab_active');
    $('#hotel_map_btn').removeClass('tab_active');

}

function bt_tabs_hide_content(){
    $('#hotel_description').hide();
    $('#hotel_facultative_trip').hide();
    $('#hotel_gallery').hide();
    $('#hotel_opinion').hide();
    $('#hotel_map').hide();

}


$(document).ready(function(){
    $('#hotel_tabs a').click(function(){

        bt_remove_active_tabs();
        bt_tabs_hide_content();

        $(this).addClass('tab_active');

        $('#'+$(this).attr('rel')).show();

       

        return false;

    });
});