$(document).ready(function() {
	$('a#startpageMore').click(function(){
            $('a#startpageLess').show();
            $('a#startpageMore').hide();
            $('div.startpageContentText').slideDown(500);
		  
		  return false;
	  });

	$('a#startpageLess').click(function(){
		$('a#startpageLess').hide();
            $('div.startpageContentText').slideUp(500, function(){
                $('a#startpageMore').show();
		  });
		  return false;
	  });

	//show the play-button on startpage in superhighlight
	$('#videoPlayButton').fadeIn();
    
    $("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);
}
