var mainFlashContainer = null;
var menuFlashContainer = null;
$(document).ready(function(){
	mainFlashContainer = ($.browser.msie)?$("object[id='intro_weblayout']"):$("embed[name='intro_weblayout']");
	menuFlashContainer = ($.browser.msie)?$("object[id='top_menu']"):$("embed[name='top_menu']");
	if ( !$.browser.msie && mainFlashContainer.length > 0 ) {
		mainFlashContainer.bind('mousewheel', function(event, delta) {
			$(this).get(0).JSmousewheelHandler(delta);
			event.stop();
		});
	}
});

function showBackground(){
	$('div#background').fadeIn( 5000 );
}

function callMe(name,number){
	alert( 'Naam: ' + name + '\nNummer: ' + number );
}

function JScallDropDownMenu(){
	if ( menuFlashContainer.length > 0 ) {
		menuFlashContainer.get(0).JSdropDownMenu();
	}
}
