// We put this in place to fix a bug in Safari, possibly other browsers.
// -----------------------------------------------------------------------------
// We needed a div that would display be a fixed size and display scrollbars
// only when hovered over. However, when a user hovered over the div, scrolled
// a bit, then moved back over the div, the scrollbar position would return
// to the top while the content was still in it's scrolled position.

// This code helps the div (with class 'scroll_1') keep its scrolled position.
// The CSS for the div class sets overflow:hidden, then overflow:auto for the
// hover state.

// -- AK/DR 12-31-2008

$(document).ready(function() {
	$('.scroll_1').each( function() { 
		$(this).mouseover(function() { 
			this.scrollTop = this.scrollTop; 
		}) 
	});
});