
$(document).ready(function()
{
$(".expand").hide();
$(".more").click(function()
{
$(this).prev(".expand").slideToggle(600)
})
})
