function worldMap() {
	$('#detailmap').css('display', 'none');
	$('#worldmap').css('display', 'block');
	$('#mappoint').css('top', '138px').css('left', '362px').click(detailMap);
	$('#mappoint img').attr('title','click for details');
	$('.page-title h1').html('location: austria, europe');
	setTimeout(function() {
			$('#mappoint').attr('href', '#').removeAttr('target');
		}, 50
	);
}

function detailMap() {
	$('#worldmap').css('display', 'none');
	$('#detailmap').css('display', 'block');
	$('#mappoint').css('top', '148px').css('left', '513px');
	$('#mappoint img').attr('title','view on Google Maps');
	$('.page-title h1').html('<a href="#">&lt;&lt; back</a>').click(worldMap);
	setTimeout(function() {
			$('#mappoint')
				.attr('href', 'http://maps.google.com/maps?ll=47.039246,15.604019&spn=0.360786,0.732651&cid=5486830194383993156')
				.attr('target', '_blank');
		}, 50
	);
}

$(document).ready(function() {
	worldMap();
	
	/* Pop out the titlebar */
	if($('.page-title')) {
		var p_top = $('.page-title').css('top');
		$('.page-title').css('height','0px').css('top', (parseInt(p_top) + 15) + 'px').animate({height: '50px', top: p_top}, 'slow');
	}
});

