function imagesGalerie(id){
	var self = this;
	this.div = $(id);
	this.div.find('a').mouseenter(function(){
		var here = this;							   
		this.img = $(this).find('img');									   
		this.img.css('z-index', 10);
		timer = window.setTimeout(function(){			
		here.img.animate({width: 200, 
						 height: 150, 
						 left: -50,
						 top: -35},{duration:100, queue : false});

   }, 400);
	});	
	this.div.find('a').mouseout(function(){
		window.clearTimeout(timer);
		this.img = $(this).find('img');									   
		this.img.animate({width: 75, 
						 height: 50, 
						 left: 0,
						 top: 0},{duration:100, queue : false});
		this.img.css('z-index', 2);		
	});
}

