$(document).ready(function() {
	// resize the wrapper/leftpane/rightpane/content
	resizeWrapper();
	resizePage();
	// fade in banner image
	$("#bannerimage").fadeIn(1000, function(){
	});
	// initialise jScrollPane
	$("#contenttext").jScrollPane({showArrows:true, scrollbarWidth:15});
	// lang swithcing tooltips
	$('.langswitch').tooltip({showURL: false});
});

$(document).resize(function() {
	resizeWrapper();	
	resizePage();
});

function resizeWrapper() {
	$("#wrapper").height($(document).height()-20);
}

function resizePage() {
	$("#leftpane").height($("#wrapper").height()-20);
	$("#rightpane").height($("#wrapper").height()-20);
	$("#content").height($("#rightpane").height()-205);
	$("#contenttext").height($("#content").height()-20);
}