window.addEvent(
	'domready', 
	function() { 
		initAboutUsGallery();
	}
);

function initAboutUsGallery() { 
	var images = $$('#aboutusgallery img');
	
	images.each(
		function(iObj, iIndex) { 
			iObj.addEvent(
				'mouseover', 
				function() {
					iPath = iObj.src;
					iNewPath = iPath.replace(/about-(\d+)\w+/g, "about-$1");
					$('about' + iIndex).innerHTML = '<img src="' + iNewPath + '">';
					$('about' + iIndex).removeClass('hide');
				}
			);

			iObj.addEvent(
				'mouseout', 
				function() {
					// iPath = iObj.src;
					// iNewPath = iPath.replace(/about-(\d+)\./g, "about-$1sm.");
					$('about' + iIndex).innerHTML = '';
					$('about' + iIndex).addClass('hide');
				}
			);
		}
	);
}

