// stop #content area from shrinking when it has insuffiecent text
// (i.e., stick it's bottom to the bottom of its containing
// #content_box) 

function lp__onload() {
	jQuery('#content').height(jQuery('#content_box').height()-6);
}

