top10rooms_status = true;
function top10rooms() {
	if (top10rooms_status) {
		$('.tbl_deco tr[class*=hide]').fadeIn();
		$('.link_top10rooms_function').hide();
	} else {
		$('.tbl_rooms .hide').fadeOut();
	}
	top10rooms_status = !top10rooms_status;
}
$(document).ready(function() {
	$('.hide').hide();
	$('.plus_de_rooms').click(function() {
		$('.plus_de_rooms_cell').fadeIn();
		$('.plus_de_rooms').remove();
		$('.table table').css('border-bottom', '1px solid #b4b4b4');
	});
});