/* Author: Daniel Foote. */

/* Countdown clock */
$(document).ready(function(){

	$('#countdown').countdown({until: new Date(2011, 4, 19, 9, 0, 0), timezone: 8, layout: '<b>{dn} {dl} {hnn}{sep}{mnn}{sep}{snn}</b> {desc}', description: 'Until 9AM May 19 2011!'});
});

/* For the registration page. */
function fixCheckboxes( master, first )
{
	if( master.is(':checked') )
	{
		// Check everything.
		$('input[rel=att]').attr({'checked': 'checked', 'disabled': 'disabled'});
	}
	else
	{
		// Uncheck it all.
		if( !first )
		{
			$('input[rel=att]').attr({'checked': '', 'disabled': ''});
		}
	}
	}
$(document).ready(
	function()
	{
		var masterCheckbox = $('#wholelan');
		if( masterCheckbox.length > 0 )
		{
			masterCheckbox.click(
				function()
				{
					fixCheckboxes(masterCheckbox);
				}
			);
			fixCheckboxes(masterCheckbox, true);

			// Didn't work in Chrome.
			//var registerButton = $('#register');
			//registerButton.click(function(){registerButton.attr('disabled', 'disabled'); return true;});
		}
	}
);

