$(function(){$("div#footer div.block-menu_block").each(function(){$(this).find("li:gt(3)").wrapAll('<div class="more clearfix" />');
$(this).find("div.more").after('<li class="more"><a href="#">More</a></li>').css("display","none");
$(this).find("li.more a").click(function(){$(this).toggleClass("expanded");
$(this).toggleText().parent().siblings("div.more").slideToggle("fast");
return false
})
});
jQuery.fn.toggleText=function(){return this.each(function(){$el=$(this);
var a=$el.html()=="More"?"Less":"More";
$el.html(a)
})
}
});
