$(document).ready(function(){
	$('.Event').hide();
	pEvent('01');
});

function pEvent (number){
	$('#Event').fadeOut('fast', function(){
		$(this).html($('#e'+number).html()).fadeIn('slow');
		tooltip();
	});
}
