if(window.addEventListener) {
	window.addEventListener('load', smartRollover, false);
} else if(window.attachEvent){
	window.attachEvent('onload', smartRollover);
} else {
	window.onload = smartRollover;
}

function smartRollover() {
	if(document.getElementsByTagName) {
		var images = document.getElementsByTagName("img");
		
		for(var i=0; i < images.length; i++) {
			if(images[i].getAttribute("src").match("_off\\."))
			{
				var nonRollCheck ;
				nonRollCheck = images[i].getAttribute('className');
				nonRollCheck = (nonRollCheck == null) ? images[i].getAttribute('class') : nonRollCheck;
				
				nonRollCheck = nonRollCheck ? nonRollCheck.match(/(^|\s)no_rollover(\s|$)/) : false;
				
				if (!nonRollCheck)
				{
					ImgSrc = images[i].getAttribute("src").replace("_off.", "_on.");
					new Image().src = ImgSrc;
					
					images[i].onmouseover = function() {
						this.setAttribute("src", this.getAttribute("src").replace("_off.", "_on."));
					}
					images[i].onmouseout = function() {
						this.setAttribute("src", this.getAttribute("src").replace("_on.", "_off."));
					}
				}				
			}
		}
	}
}
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-26559041-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

