function menu_include(siteurl) {
	jQuery(document).ready(function() {
		// TRAININGEN
		jQuery("#m298").bind("mouseenter", function() {
			jQuery("img:last", this).css({'display' : 'block'});
		});
		jQuery("#m298").bind("mouseleave", function() {
			jQuery("img:last", this).css({'display' : 'none'});
		});
		jQuery("#m1650").bind("mouseenter", function() {
			jQuery("img:last", this).css({'display' : 'block'});
		});
		jQuery("#m1650").bind("mouseleave", function() {
			jQuery("img:last", this).css({'display' : 'none'});
		});
		jQuery("#m1651").bind("mouseenter", function() {
			jQuery("img:last", this).css({'display' : 'block'});
		});
		jQuery("#m1651").bind("mouseleave", function() {
			jQuery("img:last", this).css({'display' : 'none'});
		});
		jQuery("#m1652").bind("mouseenter", function() {
			jQuery("img:last", this).css({'display' : 'block'});
		});
		jQuery("#m1652").bind("mouseleave", function() {
			jQuery("img:last", this).css({'display' : 'none'});
		});
		jQuery("#m1653").bind("mouseenter", function() {
			jQuery("img:last", this).css({'display' : 'block'});
		});
		jQuery("#m1653").bind("mouseleave", function() {
			jQuery("img:last", this).css({'display' : 'none'});
		});

		// WEBSITE
		jQuery("#m300").bind("mouseenter", function() {
			//jQuery("img:last", this).fadeOut("fast");
			jQuery("img:last", this).css({'display' : 'block'});
		});
		jQuery("#m300").bind("mouseleave", function() {
			//jQuery("img:last", this).fadeOut("fast");
			jQuery("img:last", this).css({'display' : 'none'});
		});
		jQuery("#m320").bind("mouseenter", function() {
			//jQuery("img:last", this).fadeIn("fast");
			jQuery("img:last", this).css({'display' : 'block'});
		});
		jQuery("#m320").bind("mouseleave", function() {
			//jQuery("img:last", this).fadeOut("fast");
			jQuery("img:last", this).css({'display' : 'none'});
		});
		jQuery("#m321").bind("mouseenter", function() {
			//jQuery("img:last", this).fadeIn("fast");
			jQuery("img:last", this).css({'display' : 'block'});
		});
		jQuery("#m321").bind("mouseleave", function() {
			//jQuery("img:last", this).fadeOut("fast");
			jQuery("img:last", this).css({'display' : 'none'});
		});
		jQuery("#m322").bind("mouseenter", function() {
			//jQuery("img:last", this).fadeIn("fast");
			jQuery("img:last", this).css({'display' : 'block'});
		});
		jQuery("#m322").bind("mouseleave", function() {
			//jQuery("img:last", this).fadeOut("fast");
			jQuery("img:last", this).css({'display' : 'none'});
		});
		jQuery("#m323").bind("mouseenter", function() {
			//jQuery("img:last", this).fadeIn("fast");
			jQuery("img:last", this).css({'display' : 'block'});
		});
		jQuery("#m323").bind("mouseleave", function() {
			//jQuery("img:last", this).fadeOut("fast");
			jQuery("img:last", this).css({'display' : 'none'});
		});
		jQuery("#m472").bind("mouseenter", function() {
			//jQuery("img:last", this).fadeIn("fast");
			jQuery("img:last", this).css({'display' : 'block'});
		});
		jQuery("#m472").bind("mouseleave", function() {
			//jQuery("img:last", this).fadeOut("fast");
			jQuery("img:last", this).css({'display' : 'none'});
		});
		// ANIMATE BUTTON
		onlineaanmelden_up();
	});
}
function onlineaanmelden_up() {
	if(document.getElementById('custombutton')) {
		var selector = '#custombutton';
		var bottom_pos = parseFloat(jQuery(selector).css('bottom')) + 15;
	} else if(document.getElementById('aanmeldenclient')) {
		var selector = '#aanmeldenclient';
		var bottom_pos = parseFloat(jQuery(selector).css('bottom')) + 15;
	}
	jQuery(selector).idle(2000).animate({
		bottom: bottom_pos
	}, 2000, 'easeInOutCubic', function() {
		onlineaanmelden_down();
	});
}
function onlineaanmelden_down() {
	if(document.getElementById('custombutton')) {
		var selector = '#custombutton';
		var bottom_pos = parseFloat(jQuery(selector).css('bottom')) - 15;
	} else if(document.getElementById('aanmeldenclient')) {
		var selector = '#aanmeldenclient';
		var bottom_pos = parseFloat(jQuery(selector).css('bottom')) - 15;
	}
	jQuery(selector).animate({
		bottom: bottom_pos
	}, 1000, 'easeOutBounce', function() {
		onlineaanmelden_up();
	});
}
