//learned from http://www.derekallard.com/blog/post/conditionally-sticky-sidebar
function fixNavPosition()
{
	if( window.XMLHttpRequest ) { // IE 6 doesn't implement position fixed nicely...
			document.getElementById('navigation_col').style.position = 'fixed'; 
			document.getElementById('logo').style.position = 'fixed'; 
	}
}