$(document).ready(function() {
	$('a#startpageMore').click(function(){
		$('div.startpageContentText').slideDown(500);
		$('a#startpageMore').hide();
		$('a#startpageLess').show();
		return false;
	});

	$('a#startpageLess').click(function(){
		$('div.startpageContentText').slideUp(500, function(){
			$('a#startpageLess').hide();
			$('a#startpageMore').show();
		});
		return false;
	});

	// Play button on Startpage
	$('#videoPlayButton').fadeIn();

	// Overlay for images
	$('.magnify').nyroModal({
		closeButton:''
	});
	
	// Epoche Filter in Location Guide
	$("select#epocheSelect").change(function(){
		$(this).parent('form').submit();
	})	
});

function showVideo(fileUrl){
	var content = '<div id="flashVideo"></div>';
	$.nyroModalManual({
		content: content
	});
	swfobject.embedSWF(fileUrl, "flashVideo", "690", "388", "9", false, flashvars, params, attributes);
}

