function printpage() {
	window.print();
}

jQuery(function($) {
	function myHeight () {
		var h_s = $("div.sidebar").height(); 
		var h_c = $("div.inner").height();
		if (h_s > h_c){
			$("#content").height(h_s + 50);
		} else {
			$("#content").height(h_c + 50); 
		}
	}

	$(window).load(function () {
		myHeight (); 
	});
	$(window).resize(function(){
		myHeight ();
	});
});
