// JavaScript Document
function initialize() {
	$(function()
	{
	// Remove Javascript warning.
	$('div').remove( '#noJS');
	// Initialize jScrollPane on the page.
	var $scrollWindow = $('#scrollWindow');
	$scrollWindow.jScrollPane({animateTo:false});
				
	$('a.scrollStop').bind(
					'click',
					function()
					{
						var targetElementSelectorString = $(this).attr('href');
						$scrollWindow[0].scrollTo(targetElementSelectorString);
						return false;
					}
						);			
                
	});
}

function moreInfo(url) {
	// Pops up new window
	newwindow=window.open(url,'popUp','height=350,width=400,top=120,left=400');
	if (window.focus) {newwindow.focus()}
	return false;
}

									  
