$(function()
{
	//alert("here");
	//if($('#text_content').length > 0) {
		// this initialises the scollpanes on the page.
		//$('#text_content').css({'visibility':'visible'});
		//$('#text_content').jScrollPane();
	//}
	
		function initScrollPanes() {
			$(function() {
				$('#text_content').css({'visibility':'visible'});
				$('#text_content').jScrollPane();
				$('#brokerage_text_content').css({'visibility':'visible'});
				$('#brokerage_text_content').jScrollPane();
			});
		}
		//
		if(navigator.appVersion.indexOf("Safari") > -1 || navigator.userAgent.indexOf("Safari") > -1) {
			setTimeout(initScrollPanes, 600);
		} else {
			initScrollPanes();
		}
});