function initScroll()
{
	var IE6 = false;
	if (jQuery.browser.msie && parseInt(jQuery.browser.version) == 6) IE6 = true;

	$('#ex-books .wrapper').css('height', 'auto');
	$('#ex-info .wrapper').css('height', 'auto');

	var h = Math.max( $('#ex-books div.wrapper').height(), $('#ex-info div.wrapper').height() );
	var oh = 32;
	
	$('#ex-books div.wrapper').css('height', h);
	$('#ex-info div.wrapper').css('height', h);

	if (IE6) {
		$('#ex-news-list').css('height', h-oh);
	}
	else {
		var t = $('#ex-news .jScrollPaneContainer');
		if (!t.height()) t = $('#ex-news-list');

		$('#ex-news-list').css('overflow','hidden');
		t.css('height', h-oh);
		$('#ex-news-list').jScrollPane({showArrows:true, scrollbarWidth: 13, arrowSize: 13});
	}
}

function resetScroll() {
	if ( $.jqem.current() != $.jqem.previous() ) {
		initScroll();
	}
}

$.jqem.bind(resetScroll);
$(initScroll);

