(function($){
var collapsed = false;
$("#showmore").click(function () {
alert($("#jshop_unijax_filter").css("height"));
if (collapsed) {
collapsed = false;
var height = $("#jshop_unijax_filter").css("height", "auto").height();
$("#jshop_unijax_filter").animate({"height": height});
} else {
$("#jshop_unijax_filter").animate({"height": "500px"});}
collapsed = true;
})
})(jQuery)