$(document).ready(function()
{
$(".content-hw-expand").hide();
$(".content-hw-readmore").click(function()
{
$(this).next(".content-hw-expand").slideToggle(600);
});
}); 


