function input(id,txt) {
	d = document.getElementById(id);
	if (d.value == txt) { d.value = ''; }
	else if (d.value == '') { d.value = txt; }
}

$(document).ready(function(){
	$('.ceu').click(function(){
		$('#submit').html('');
		
		var url = 'inc/voando.php';
		$.get(url, function(data){
			$('.center').html(data);
		});
	});
	$('.rod').click(function(){
		var url = 'inc/submit.php';
		$.get(url, function(data){
			$('#submit').html(data);
		});

		var url = 'inc/rodando.php';
		$.get(url, function(data){
			$('.center').html(data);
		});
	});
});
