jQuery(document).ready(function($) {

	$('#countdown').countdown({until: new Date(2010, 2, 14, 8), format: 'dHMs', description: 'voting ends:'});

$("a").hover(function(){
 $(this).stop().animate( { color: '#2ec2ff' }, 250)
;
}, function () {
    $(this).stop().animate( { color: '#087EBF' }, 350)
});

$("a img, #submit").hover(function(){
$(this).stop().fadeTo("fast", 0.8);
},function(){
$(this).stop().fadeTo("fast", 1.0);
});

$("#continue, #main-site-link img").click(function(){
 $('#overlay').fadeOut(400);
});

});

