jQuery(document).ready(function ($){
var titleIds={
"Průběh ročníku": 'prubeh_rocniku_',
"Program ročníku": 'program_rocniku_',
"Tiskoviny": 'tiskoviny_',
"Fotografie": 'fotografie_',
};
$('#festival_year').on('change', function (){
if($('#festival_year').val()!='empty'){
var url_redirect=window.location.origin + "/historie_festivalu/" + $('#festival_year').val();
window.location.replace(url_redirect);
}});
$('.rocniky-vypis-content').hide();
$('#wx-rocniky-vice').on('click', function (){
$('.rocniky-vypis-content').show();
$('.rocniky-vypis-perex').hide();
});
$('#wx-rocniky-mene').on('click', function (){
$('.rocniky-vypis-content').hide();
$('.rocniky-vypis-perex').show();
});
$('.rocniky-vypis-content h2').each(function (index){
var title_content=$(this).text();
if(typeof(titleIds[title_content])!="undefined"&&titleIds[title_content]!==null){
console.log(titleIds[title_content]);
$(this).attr('id', titleIds[title_content])
$('.' + titleIds[title_content]).show();
}});
$(".prubeh_rocniku_").click(function(){
$('.rocniky-vypis-content').show();
$('.rocniky-vypis-perex').hide();
$('html, body').animate({
scrollTop: $("#prubeh_rocniku_").offset().top
}, 2000);
});
$(".program_rocniku_").click(function(){
$('.rocniky-vypis-content').show();
$('.rocniky-vypis-perex').hide();
$('html, body').animate({
scrollTop: $("#program_rocniku_").offset().top
}, 2000);
});
$(".tiskoviny_").click(function(){
$('.rocniky-vypis-content').show();
$('.rocniky-vypis-perex').hide();
$('html, body').animate({
scrollTop: $("#tiskoviny_").offset().top
}, 2000);
});
$(".fotografie_").click(function(){
$('.rocniky-vypis-content').show();
$('.rocniky-vypis-perex').hide();
$('html, body').animate({
scrollTop: $("#fotografie_").offset().top
}, 2000);
});
});