// JavaScript Document

function sponsor(){
	document.getElementById ('rdoSponsorPass').checked=true;
	document.registration.FeeSelection[0].disabled=true;
	document.registration.FeeSelection[1].disabled=true;
	document.registration.FeeSelection[2].disabled=false;
};

function non_sponsor(){
	document.getElementById ('rdoSponsorPass').checked=false;
	document.registration.FeeSelection[0].disabled=false;
	document.registration.FeeSelection[1].disabled=false;
	document.registration.FeeSelection[2].disabled=true;
};


 $(document).ready(function(){
		$('.navbar li').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); });
	});

