var page = "none";
var current_page = "none"
var content = "none"
var current_content = "none"

function switchPage(page, content) {
	if(page != current_page) {
		$("#safety_foto").fadeOut("medium", function() {
			$(this).load(page, function() {
				$(this).fadeIn("medium");
				$(function(){
					$("#myScroll").mbScrollable({
						width:925,
						elementsInPage:1,
						elementMargin:0,
						height:471,
						controls:"#controls",
						slideTimer:1000,
						autoscroll:true,
						scrollTimer:5000
					});
					setTimeout(function(){$("#safety_foto").fadeIn();},0);
				});
			});
		});
		$("#text_bg").fadeOut("medium", function() {
			$(".text").load(content + '?c=' + new Date().getTime());
		});
	}
}

function tarSwitch(tarpage) {
	$("#text_bg").fadeOut("medium", function() {
		$(".text").load(tarpage, function() {
			$("#text_bg").fadeIn("medium");
		});
	});
}

function infoclick() {
	$("#text_bg").fadeIn("medium");
}

function closeText() {
	$("#text_bg").fadeOut("medium");
}

$(document).ready(function() {
	switchPage('images/welkom.html', 'content/welkom.html');
});

