runOnLoad(function() {
	if (document.location.pathname.indexOf('/ueberuns/geschichte') >= 0) {
		var imgs = Ext.select('.contentcontainer img');
		imgs.each(function(im) {
			im.dom.style.cursor = 'hand';
			im.on('click', function(e, el) {
				var nsrc = el.src.replace(/\/thm\//, '/media/');
				var id = Ext.id();
				var b = Ext.MessageBox.show({
					title : 'Bayrische Schanz',
					msg : '<a href="#" onclick="hide(); return(false);"><img id="' + id + '" src="' + nsrc + '" alt="" border="0"></a>',
					progress : false,
					closable : true,
					modal : false,
					animEl : el
				});
				var nel = Ext.get(id);
				nel.on('load', function(ev, el) {
					var n = Ext.get(el);
					var box = n.getBox();
					b.getDialog().resizeTo(box.width, box.height);
				});
			}, im);
		});
	};
	return;
	var home = Ext.get('startpage');
	if (home) {
		Ext.MessageBox
			.show({
				title : 'SPESSART WaldWeihnacht',
				msg : '<a href="http://www.spessart-waldweihnacht.de"><center><img src="/images/sww.jpg" width="541" height="125" alt="" border="0"><div style="padding:10px">Tauchen Sie ein in einen vor-weichnachtlichen Zauberwald.<br>Wir, die Interessengemeinschaft SPESSART Waldweihnacht,<br>freuen uns auf Ihren Besuch!<br><br>1. und 2. Adventswochenende (Sa/So 28./29.11. und 5./6.12.2009)<br>Öffnungszeiten: Samstags von 12 bis 21 Uhr, Sonntags von 12 bis 20 Uhr<br>Eintritt frei</div></center></a>',
				width : 561,
				height : 300,
				progress : false,
				closable : true,
				modal : false,
				animEl : 'logo'
			});
	}
});
var hide = function() {
	Ext.MessageBox.hide();
}

