$(preInit);


function preInit(){
	
	$(window).resize(init);
	
	init()
	
}

function init(){ 
	setCenterWin();
	setTimeout('setScrollBar()',500);
}

function setCenterWin(){
	wDsp = $('#outerBox').height();
	$('#outerBox').css({marginTop:(($(document).height()-$('#outerBox').height())/2)+'px'})
}

function setScrollBar(){
	$('#pane2').jScrollPane({showArrows:true, scrollbarWidth: 22, arrowSize: 22,topCapHeight:290,dragMaxHeight:20});
}


