﻿$(window).load(function () {
	//$("#diavoorstelling-thumbs").hide();

	$("#background").fullBg();

	$("#diashow a").click(function () {
		if ($("#diashow a").text() == "Toon website") {
			$("#diashow a").text("Diavoorstelling");
			$("#topmenu-big").show();
			$("#newscontent").show();
			$("#leftmenu").show();
			$("#content").show();
			$("#diavoorstelling-thumbs").hide();
		}
		else {
			$("#diashow a").text("Toon website");
			$("#topmenu-big").hide();
			$("#newscontent").hide();
			$("#leftmenu").hide();
			$("#content").hide();
			$("#diavoorstelling-thumbs").show();
		}
	});

	$("#diavoorstelling-thumbs a").click(function () {
		var newBackground = $(this).find('img').attr('src');
		newBackground = newBackground.replace('/thumbs', '');
		$("#background").attr('src', newBackground);
	});

	if ($("a.photo").length > 0) {
		$("a.photo").fancybox({ "titlePosition": "inside" });
	}

	if ($(".photo-slideshow").length > 0) {
		$(".photo-slideshow").cycle({
			speed: 2000,
			timeout: 3500
		});
	}
});

