// *** global jQuery scripts ***//

$(document).ready(function(){
	if ($("div#sidebar").height()>0) {
		setColumns();
	}
});
function setColumns() {
	if ($("div#tabcontent").height()>0) {
		var boxMP = $("div#main_panel").height();
		var boxTC = $("div#tabcontent").height();
		var boxSB = $("div#sidebar").height();
		boxSB=boxSB-60;
		if (boxMP > boxSB) {
			$("div#sidebar").height(boxMP+60);
		} else {
			//$("div#tabcontent").height(boxSB-(boxMP-boxTC));
			$("div#tabcontent").height((boxSB-boxMP)+(boxTC));
		}
	} else {
		var boxSB = $("div#sidebar").height();
		var boxPC = $("div#pagecontent").height()+50;
		if (boxPC > boxSB) {
			$("div#sidebar").height(boxPC);
		} else {
			$("div#pagecontent").height(boxSB-50);
		}
	}
}


