var newClass = function() {
	return function() {
		return this.init.apply(this, arguments);
	}
}

Otvet = newClass();
Otvet.prototype = {
	init: function() {
		var t = this;
		t.Fotochen = $('#Fotochen');
		t.Fotochen2 = $('#Fotochen2');
	},
	
	photoOver: function(id) {
		// console.log(id);
		var t = this;
		t.Fotochen.css('display', 'none');
		t.Fotochen2.css('display', 'inline');
	},

	photoOut: function() {
		var t = this;
		t.Fotochen.css('display', 'inline');
		t.Fotochen2.css('display', 'none');
	}

}; 
