$(function() {
$("#devam").toggle(function() {
$('#icerik').css({'height':'auto', 'overflow':'visible'});
$(this).text("kapat");
}, function() {
$('#icerik').css({'height':'80','overflow':'hidden'});
$(this).text("devam");
});
});
