$(document).ready(function() {
	countdown();
	function countdown(){
		$.ajax({
			type: "POST",
			url: "ajax/countdown.php",
			success:	function(response){
							$("#countdown").html(response);
			}
		});
		$.ajax({
			type: "POST",
			url: "ajax/countdown_title.php",
			success:	function(response){
							$("title").html(response);
			}
		});
		
	}
	
	setInterval(function() {
    	countdown();
    }, 	1000);
}); 
