/*
	indicate Event registration
*/
$(document).ready(function(){

	$('.regUn').click(function() {
		if($(this).text()=='register'){
			humanMsg.displayMsg('<span>You are now <span class="accent">Registered</span> for this Event</span>', '');
			$(this).fadeOut(350, function () {
				$(this).removeClass();
				$(this).addClass('unregister');
				$(this).text('unregister');
				$(this).fadeIn();
			});

			}else{
			
			if($(this).text()=='unregister'){
				humanMsg.displayMsg('<span>You are now <span class="accent">Unregistered</span> for this Event</span>', '');
				$(this).fadeOut(350, function () {
					$(this).text('register');
					$(this).removeClass();
					$(this).addClass('register');
					$(this).fadeIn();
				});
			}
		}
		return false;
	});

});