function javascript_gothland() {

	$('#gothland').hide();
	$('#gothland').fadeIn(1000);
	animate_gothland();
}

function animate_gothland() {
	$('#gothland img').animate({
		left: '-740px'
	}, 10000).animate({
		left: '0px'
	}, 10000, animate_gothland);
}
