$(document).ready(function(){

	/* CONFIG */
	$( ".modDesignator:first" ).css( {"display":"block"} );
	numDesignator = $( ".modDesignator").length;
	
	htmlStr = "";
	for (x=0;x<numDesignator;x++) {
		idName = $( ".modDesignator:eq("+x+")").attr("id");
		htmlStr = htmlStr + '<a href="#" name="'+ idName +'" class="desNav">' + idName + '</a><br />';
		}
	$( "#designatorNav").html(htmlStr);
	/* CONFIG */
	
	$(".desNav").click(function(){
		$( ".modDesignator" ).css( {"display":"none"} );
		whichDesId = "#" + $(this).attr("name")
		$( whichDesId ).css( {"display":"block"} );
	});	

	$("#ticketSummaryMod").css({"display":"none"});
});

function resetLists() {
  plou_calc_reset();
  ps_calc_reset();
}
