$(document).ready( function () {
	$('#menu_produit').hide();
	$('#btn_produits').mouseover(function() {
		$('#menu_produit').fadeIn();
		$('#bdx_flash').css({'visibility':'hidden'});
		callExternalInterface();
	});
	$('.btn_other').mouseover(function() {
		$('#menu_produit').fadeOut();
		$('#bdx_flash').css({'visibility':'visible'});
		callExternalInterface2();
	});
	
});


function getMovieName(movieName) {
	if (navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName];
	}
	else {
		return document[movieName];
	}
};

function callExternalInterface() {
	getMovieName("Ze_bdx").bdxblank(); 
};
function callExternalInterface2() {
	getMovieName("Ze_bdx").bdxback(); 
};

