﻿var PubPos = function(p) {
	try {
		OAS_AD( p );
	}
	catch( e ) {
		/*document.write( "<div class=\"blocked\"><h1>Blocked!</h1><div><p>You are running ad-blocking software or " +
						"have an over-zealous firewall (such as Norton Anti-Virus) installed.</p><p>You will likely encounter problems " +
						"on various pages. These &ldquo;solutions&rdquo; often incorrectly target elements of websites and " +
						"identify actual content as advertising.</p><p><a href=\"/inside/advertising/enable/\">Try temporarily disabling your software</a>.</p></div></div>" );*/
	}
};
var TabLoad = function() {
	var l = document.getElementById("days");
	if( l ) {
		l = l.getElementsByTagName("li");
		for( var i = 0; i < l.length; ++i ) {
			l[i].onmouseover = function() {
				this.className += " active";
			}
			l[i].onmouseout = function() {
				this.className = this.className.replace(/\s+active\s*/, '');
			}
		}
	}
}
if( window.attachEvent )
	window.attachEvent( "onload", TabLoad );
