function xpand(height) {
    $(".module_cols .module").each(function() { // find specific elements
			var _startHeight = 0;
			/* this is the only way to get the real height in ie */
			//alert("Module height: " + $(this).height());
			$(this).children().each(function(){ _startHeight += $(this).height();/*alert($(this).height())*/; });

			var showmore = (_startHeight>height)?'<div class="ceexpand more">See more</div>':'<div>&nbsp;</div>';
        	$(this).css("height", height+"px")  // set height to the one passed as parameter
            .wrap("<div class=\"wrap hide\"></div>") // add a div to group new elements
            .parents("div.wrap") // Select previously added div
            // add new child for clickable area
            .append(showmore)
            .find("div.ceexpand") // select new child
            .hover( // add a hover class
                function() { $(this).toggleClass("cehover") },
                function() { $(this).toggleClass("cehover") }
            )
            .toggle( // toggle the click action of the div
            // Position Closed -> Open It
            function () { 
                // swap the class and change the HTML
                $(this).toggleClass("cecollapse").html("Collapse") 
                // select the pre and animate it open
                .siblings("div").animate({height: _startHeight+20});
            },
            // Position Open -> Close It
            function () { 
                // swap the class and change the html
                $(this).toggleClass("cecollapse").html("See more")
                // select the pre and animate it closed
                .siblings("div").animate({height: height});
            }
        );
    });
}
