function switchFlash(file,image) {
	var div = document.getElementById(div_id);
	div.innerHTML = '<object width="' + flash_width + '" height="' + flash_height + '"><param name="movie" value="/media/' + file + '"><param name="wmode" value="transparent"><embed src="/media/' + file + '" width="' + flash_width + '" height="' + flash_height + '" wmode="transparent"></embed></object>';
	
	var div_bg = document.getElementById('frontpage-menu');
	div_bg.style.backgroundImage = 'url(skin/frontend/mediacentrum/default/images/' + image + ')';
	
	return false;
}