$(function () {
	var austDay = new Date();
	austDay = new Date(2010, 7 - 1, 24, 9);
	$('#countdown').countdown({until: austDay});
	$('#year').text(austDay.getFullYear());
});

$(document).ready(function(){
        $('#submit').hover(
            function(){ // Change the input image's source when we "roll on"
                $(this).attr({ src : 'images/button_register_o.jpg'});
            },
            function(){ // Change the input image's source back to the default on "roll off"
                $(this).attr({ src : 'images/button_register.jpg'});             }
        );
    });
