window.addEvent('domready', function() {
	// Gallery functionality
	var thumbs = $('galleryThumbs');
	
	// hides all images and then displays the first
	$$('#galleryImages img').fade('hide');
	$$('#galleryImages').getElement('img').fade('show');
	
	thumbs.getElements('img').each(function(thumb){
	    var images = $$('#galleryImages img.' + thumb.id);
	    thumb.addEvents({
	        mouseover: function(){
	            $$('#galleryImages img').fade('hide');
	            images.fade('show');
	        }
	    });
	});
});
