// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Bild2' , 'Bild2LYR', 'img', 'Layout',new Array(
	'Mouse Over','Text361','Show','',0,
	'Mouse Out','Text361','Hide','',0,
	'Clicked','Layout','Go To','./Aktivitaten/Hurga_Party/Landkarte/landkarte.html',0),'',0);
 
	F_OM('Text361' , 'Text361LYR', 'txt', 'Layout',null,'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Bild2A').bind('click', function(__e) { return (F_e('Bild2', F_CL, __e)); } );
	$('#Bild2A').bind('mouseover', function(__e) { return (F_e('Bild2', F_MV, __e)); } );
	$('#Bild2A').bind('mouseout', function(__e) { return (F_e('Bild2', F_MT, __e)); } );
});
// End Actions


