function fix_head() {
	if($("#content2").height() < $("#wrapperLayout").height()) {
		$("#content2").height($("#wrapperLayout").height()-410);
	}
}

$(document).ready(function(){
	fix_head();
	fix_head();
});