$(document).ready(function(){ $(".show-more-info").click(function(){ var id = $(this).attr("rel"); $('#'+id).slideToggle("fast"); if($(this).attr("class") == 'show-more-info'){ $(this).attr({'class':'show-more-info up'}); $(this).text('Свернуть'); }else{ $(this).attr({'class':'show-more-info'}); $(this).text('Подробнее'); } return false; }); });