function doHrefKCABumper() {
	$('#mainmenu a').bind("click", doKCABumperOverride);
}
//window.onbeforeunload = doKCABumperOverride;
/*
$(window).unload( function () {
	if( $("nominee-list-photos li").find("a.checked").size() > 0){
		doKCABumperOverride(null);
	}
});
*/

function doKCABumperOverride(e) {
	var answer =confirm("Hey!  Are you sure you want to leave? \nYou’ve got to make a choice in every category in order for your vote to count! \n\nClick CANCEL to continue voting.");
	//var answer ="Hey!  Are you sure you want to leave? \nYou’ve got to make a choice in every category in order for your vote to count! \n\nClick CANCEL to continue voting.";
	//return "test";
	if (answer){
		return true;
	}
	else{
		return false;
	}
	
}
	

$(document).ready(function() {
	doHrefKCABumper();
	

	
});
