// JavaScript Document

/* ############ COUNTDOWN ############*/
$(document).ready(function() {	
	
	/* COUNTDOWN FUNCTION */
	$("#timer").countdown({
		date: "October 31, 2011 19:24",
		onChange: function( event, timer ){
		},
		onComplete: function( event ){
		
			$(this).html("Completed");
		},
		leadingZero: true
	});
	
	/* MOSTRA/TOGLI FORM */	
	$(".get_info").click(function () {
	   $(".form_container").stop().slideDown(800).animate({ opacity: "1"}, "slow");
	   $(window.location).attr('href', '#show_form');
	});
	
});
