schimbaPoza = Class.create();
schimbaPoza.prototype = {
	initialize: function($poza_mica, $p, $x, $poza_centrala)
	{	
		this.poza_centrala = document.getElementById($poza_centrala);
		this.poza_mica = document.getElementById($poza_mica);
	
		this.src_poza_mica = $p;
		this.src_poza_mare = $x;
		
		this.poza_mica.onclick = this.cChange.bind(this);
	},

	cChange: function(evt)
	{
		if (this.src_poza_mare != "")		
			this.poza_centrala.src = this.src_poza_mare;
	}
}

