var IPOXContact, ipoxcontact;

IPOXContact = function ($) {
	var that = this;
	
	this.init = function () {
		this.build_contact_list();
	};
	
	this.build_contact_list = function () {
		$('.ipox-contact-resellers .entry').each(function () {
			$(this).click(function () {
				if($(this).hasClass('active')) {
					$(this).removeClass('active');
				} else {
					$('.ipox-contact-resellers .entry').each(function () { $(this).removeClass('active'); });
					$(this).addClass('active');
				}
			});
		});
	};
	
	$(document).ready(function () {
		that.init();
	});
};
ipoxcontact = new IPOXContact(jQuery);

