//-----------------
$(document).ready(function() {
	//-------
	show_counter();
	//-------
});
//-----------------
function show_counter() {
	$.ajax({
		type:		"POST",
		url:		"index_old_071005.php",
		data:		"task=counter",
		success:	function(msg) {
			i=$("#insert_launch_date_here").html(msg);
			setTimeout('show_counter()',60000);
		}
	});
}
//-----------------