function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

function showHideGeoscope(n) { 
	if (document.getElementById) {
		if (document.getElementById('geoscope')) {
			d = document.getElementById('geoscope').style.display;
			if (n=='show') 
			{
				d='block';
				fo.write("legeoscope");
			} 
			else if (n=='hide') 
			{
				d='none';
			}	
			document.getElementById('geoscope').style.display = d; 
		}
	}
}

function clickGeoscope() {
	if (document.getElementById) {
		if (document.getElementById('trouver')) {
			d = document.getElementById('trouver');
			d.onclick = function() {
				showHideGeoscope('show');
			}
		}
		if (document.getElementById('geoscope_link')) {
			d = document.getElementById('geoscope_link');
			d.onclick = function() {
				showHideGeoscope('show');
			}
		}
	}
}
addLoadEvent(clickGeoscope);

function clickCatalog()
{
	$('catalogue_babybook').style.display = 'none';
	$('catalogue_babybook_in').style.display = '';
	$('decouverte').style.display = 'none';
	$('left_menu_click').style.display = 'none';

	var espace_baby = $('espace_baby');
	if (espace_baby)
	{ 
		$('planete_baby').style.display = 'none';
		$('espace_baby').style.display = '';
	}
	
	new Effect.BlindDown('menus');
	
	return false;
}

function videoPlayer(id, video)
{
	new LITBox('index.php?page=player&video=' + id, {type:'window',overlay:true,height:732, width:527});
	var so = new SWFObject("http://www.babymoov.com/english/gfx/swf/simplePlayerVideo.swf", "video", "491", "413", "8", "#ffffff");
    so.addVariable('videoURL', video);
	so.addParam("wmode", "transparent");
	so.write("players");


	return false;
}

function geoscope()
{
   new LITBox('geoscope.htm', {type:'window',overlay:true,height:830, width:742}); 
   var fo = new FlashObject("cartes/carte+drapeau_fin.swf?clicktag=baby-products-distributor.html", "swf1", "722", "800", "7", "", false);
   fo.addParam("wmode", "transparent");
   fo.write("geoscope");	
   return false;	
}
function closeFlash()
{
	$('animation').style.display = 'none';
}
