oPersons = function() {
		this.aePersons_links = $('#content .person .image');

		this.init();
}

oPersons.prototype = {
	init: function() {
		new Popup(this.aePersons_links);
	}
}

$(document).ready(
	function(){
		new oPersons();
	}
);
