function init()
{
	registerEvents();

}

function registerEvents()
 {
 	$(".regLink").unbind("click");
 	$(".playerRegLink").click(register);
 
	$(".waiverDisagree").unbind("click");
 
	$(".waiverDisagree").click(waiverDisagree);
 
 }

function register()
{
	var campid = $(this).attr("id").substr(4);
	$("#campconfirm" + campid).show();
	return false;
}

function waiverDisagree()
{
	var campid = $(this).attr("id").substr(14);
	$("#campconfirm" + campid).hide();
	return false;
}

