var listing = {
	codes : Array,
	init : function() {
		jQuery('.l-item').each(function(x) {
			$(this).bind('click', listing.collapse).parent().parent().children().each(function (i) {
				if ($(this).nodeType == 3 && !/\S/.test($(this).html()))
					$(this).remove();
			});
		});
	},
	collapse : function(e) {
		if ($(this).next().css('display') == 'none') {
			$(this).removeClass('l-item').addClass('l-itemOn');
		} else {
			$(this).removeClass('l-itemOn').addClass('l-item');
		}
		$(this).next().slideToggle('slow');
	}
};

function openIPIX(id) {
  var popupWin = window.open('./IPIX.cfm?ipixID=' + id, 'ipixWin',  'status,scrollbars=no,resizable=no,dependent,width=410,height=330,left=50,top=50');
	popupWin.focus();
}

jQuery(document).ready(function() {
	listing.init();
});