if (!self.runTHIS) {
	var runTHIS = {
		runTHISInit: function() {
			runTHIS.modules = $$(".runimage");
			runTHIS.modulesText = $$(".runimage-text");
			var x = new Fx.Elements(runTHIS.modulesText, { wait: false, duration: 250 });

		var obj = {};
			runTHIS.modules.each(function(module, i) {
				runTHIS.modulesText[i].collapseH = runTHIS.modulesText[i].offsetHeight;
				obj[i] = { 'height': [runTHIS.modulesText[i].getStyle('height').toInt(), runTHIS.modulesText[i].collapseH]};
				module.addEvent('mouseenter', function(e) {
					var obj = {};
					obj[i] = { 'height': [runTHIS.modulesText[i].getStyle('height').toInt(), runTHIS.expandH]};
					runTHIS.modules.each(function(other, j) {
						if (other != module) {
							var h = runTHIS.modulesText[j].getStyle('height').toInt();
							if (h != runTHIS.modulesText[j].collapseH) obj[j] = { 'height': [h, runTHIS.modulesText[j].collapseH] };
						}
					});
					x.start(obj);
				});

				module.addEvent('mouseleave', function(e) {
					var obj = {};
					runTHIS.modules.each(function(other, j) {
						obj[j] = { 'height': [runTHIS.modulesText[j].getStyle('height').toInt(), runTHIS.modulesText[j].collapseH]};
					});
					x.start(obj);
				});
			});
			x.start(obj);
		}
	}

	window.addEvent('load', runTHIS.runTHISInit);
}
