$(".button-read_more").click( function(event){
event.preventDefault();
if ( $(this).hasClass("isDown") ) {
$("div.b-room-full-info").stop().animate({"height":0},"slow");
} else {
$("div.b-room-full-info").stop().animate({"height":"auto"},"slow");
}
$(this).toggleClass("isDown");
return false;
});