$(document).ready(init);

var goto;

function init() {
	window.console || (console = {}, console.log=function(){});

	$("#index_slide").dotGallery({"addlinks":false});

	Shadowbox.init({
		slideshowDelay: 3
	});
	
	$("a.gallery").click(function() {
		if(!$(this).hasClass("active")) {
			$("a.gallery").removeClass("active");
			$(this).addClass("active");
			goto=$(this).attr("data-section");
			$("#gallery").fadeOut(500, function() {
				$(this).children().hide();
				$("#" + goto).show();
				$("#gallery").fadeIn();
			});
		}
	});
}
