/*******************************************************************
 * soopa-rollovers.js
 * 7/28/2001
 * www.youngpup.net
 *
 * easiest rollovers on earth, baby!
 * see www.youngpup.net for documentation.
 *******************************************************************/


function soopaSetup() {
	var img;
	for(var i = 0; (img = document.images[i]); i++) {
		if(img.getAttribute && img.getAttribute("hsrc") != "" && img.getAttribute("hsrc") != null) {
			img.n = new Image();
			img.h = new Image();
			img.n.src = img.src;
			img.h.src = img.getAttribute("hsrc");
			img.onmouseover = function() {
				this.src = this.h.src;
			};
			img.onmouseout  = function() {
				this.src = this.n.src;
			};
		}
	}
}