$(function(){
	opModal();
})

var modals = new Array("detail", "voice", "profile", "ideal", "ticket", "stellar", "provide", "about", "thanks");

function opModal() {
	$(".operator").click(function(){
		var naviId = $(this).attr("id");
		var num = naviId.substr(naviId.length - 1, 1);
		$.nyroModalManual({
			url: "modals/" + modals[num] + ".html",
			minWidth: 100,
			minHeight: 100
		});
	});
}

