jQuery('#thumbs img:last').addClass('nm'); //remove margin right		
jQuery('#news li:last, #cal li:last, .result:last, #testUl li:last').addClass('remove'); 	
jQuery('.box:last').css('margin-right','0');

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" hover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" hover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

// Find PDF files. If exists, show PDF download div
var pdfExists = jQuery('a[href$="pdf"]').length;
if ( pdfExists > 0 ) {
	jQuery('.sideBlurb').show();
} else {
	jQuery('.sideBlurb').hide();
};
