function fleXcrollTo(id,x,y,relative) {
	var scrollDiv = document.getElementById(id);
	//Return if the target is not a fleXcrolled div.
	if (scrollDiv == null || !scrollDiv.fleXcroll) return;
	//Do the scroll by using custom method attached by fleXcroll
	scrollDiv.commitScroll(x,y,relative);
}

	window.onload = function() {
		CSBfleXcroll('content-main');
	}
