﻿manageGallerieGame = Class.create({
	
	initialize: function () {
		$('homeGame').style.display = "block";
		/*$('GaleryGame').style.display = "none";
		Event.observe($('showGalery'),'click',this.viewGalerie.bind(this))
	    Event.observe($('hideGalery'),'click',this.hideGalerie.bind(this))*/
	    
	    var nbAction = 8;
	    
	    var idAction = Math.round(Math.random()*(nbAction-1))+1;
	    
		$("titleGame"+idAction).style.display = "block";
		$("homeGame"+idAction).style.display = "block";
	},
	
	viewGalerie: function(){
		$('homeGame').style.display = "none";
		$('GaleryGame').style.display = "block";
		
		var d1 = new SWFObject("../Includes/Flash/Galerie-Game/Avant/diaporama.swf","single","315","46","7");
		d1.addParam('wmode','transparent'); 
		d1.addVariable('datasPath','../Includes/Flash/Galerie-Game/Avant/'); 
		d1.write("zoomBefore");
		
		var d2 = new SWFObject("../Includes/Flash/Galerie-Game/Apres/diaporama.swf","single","315","46","7");
		d2.addParam('wmode','transparent'); 
		d2.addVariable('datasPath','../Includes/Flash/Galerie-Game/Apres/');
		d2.write("zoomAfter");
	},
	
	hideGalerie: function(){
		$('homeGame').style.display = "block";
		$('GaleryGame').style.display = "none";
	}
});

function showImage(myUrlPhoto){
    $('myZoom').src = myUrlPhoto;
}