

$.fn.pos = function () {
	var left = ($('html').outerWidth()/2) - ($('.page').outerWidth()/2);
	if (left<0) left=0;
	var top = ($('html').outerHeight()/2) - ($('.page').outerHeight()/2);
	if (top<20) top=20;
	$(".page").attr('style', 'left:' + left +'px; top:' + top +'px;');	
}

$(document).ready(function() {
	$('.page').pos();
	$('.csc-frame-frame1').jScrollPane({showArrows: true,verticalArrowPositions: 'split',horizontalArrowPositions: 'split'});
	$('.csc-frame-frame2').jScrollPane({showArrows: true,verticalArrowPositions: 'split',horizontalArrowPositions: 'split'});
	$('html').css('visibility', 'visible');	

});

$(window).resize(function() {
	$('.page').pos();
});


