var th = null;
$(document).ready(function() {
	th = setTimeout('play()', 1000);
});

function play() {
	clearTimeout(th);
	$('#logo').fadeIn(1000, function() {
		$('#data').fadeIn(1000);
	});
}
