// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Bild7' , 'Bild7LYR', 'img', 'Layout',new Array(
	'Mouse Down','Bild7','Start Drag','Until Mouse Up',0),'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Bild7A').bind('mousedown', function(__e) { return (F_e('Bild7', F_MD, __e)); } );
	$('#Bild7A').bind('mouseup', function(__e) { return (F_e('Bild7', F_MU, __e)); } );
});
// End Actions


