/*******suckerfish shoal  *******/

/*from http://www.htmldog.com/articles/suckerfish/shoal/  

This script fixes the :hover psuedo-classes on IE5,6&7 The original script can also fix :active, :focus and more. Since we are not using those psuedo classes, those functions have been removed from the script below*/



function suckerfish(type, tag, parentId) {

	if (window.attachEvent) {

		window.attachEvent("onload", function() {

			var sfEls = (parentId==null)?document.getElementsByTagName(tag):document.getElementById(parentId).getElementsByTagName(tag);

			type(sfEls);

		});

	}

}



sfHover = function(sfEls) {

	for (var i=0; i<sfEls.length; i++) {

		sfEls[i].onmouseover=function() {

			this.className+=" sfhover";

		}

		sfEls[i].onmouseout=function() {

			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");

		}

	}

}



/* The call below tells the html to apply :hover pseudo class to any divs in the div.allstuff, if they are so specified in the css*/



suckerfish(sfHover, "div", "allstuff");