Event.observe(window, 'load', function(e){
	gestionHome = new Home();
});

var Home = Class.create();

Home.prototype = {
	initialize: function()
	{
		this.win = null;
		this.init();
	},
	
	init: function()
	{
		var i = this; //besoin car une fois dans une fonction le this change
		
		
		
	}
	


}