/* DO NOT EDIT OR REMOVE THIS PAGE! */
var photoArea = function() {
	return {
		init : function() {
			photoArea.render();
		},
		render : function() {			
			var photos = $$('.photo');
			
			photos.each(function(photo) { photo.addEvent('mouseenter', photoArea.overImage); });

		},
		overImage : function() {
			this.injectInside(this.getParent());
			
		}
	}
}();