$(document).ready(function(){
	$('.Location').hide();
	pLocation ('01');
});

function pLocation (number){
	$('#Location').fadeOut('fast', function(){
		$(this).html($('#l'+number).html()).fadeIn('slow');
		tooltip();
	});
}
