$(function(){$(".div-expander").each(function(){$(this).click(function(){if($(this).attr("expanded")=="true"){$(this).animate({height:"25px"},1500).attr("expanded","false")}else{$(this).animate({height:$(this).attr("origheight")},1500).attr("expanded","true")}}).attr("expanded","false").attr("origheight",$(this).height()).height(25)})});