$(function(){
    var date = new Date(2010, 05, 11, 20, 00, 00);
    $('#countdown #counter').countdown({
	until: date,
	format: 'DHMS',
	timeSeparator: ':',
	layout: '<table><tbody><tr><td>{dnn}</td><td>{sep}</td>' +
	    '<td>{hnn}</td><td>{sep}</td>' +
	    '<td>{mnn}</td><td></tr>' +
	    '<tr><td><span class="label">days</span></td><td></td>' +
	    '<td><span class="label">hrs</span></td><td></td>' +
	    '<td><span class="label">mins</span></td></tr></tbody></table>',
    });
    
    $('#mailinglist button').click(function(){
	alert('Thank you for joining our mailing list!  We will keep you informed of all the latest Water Hour news, including the top voted ideas for the big event.');
    });

    var count_overlay = $('#count_overlay').overlay().data('overlay');
    $('#count_me_in').click(function() {
	count_overlay.load();
	return false;
    });
});
