var lang='cs';$(function() { $("#toggleControlbox").click(function(){ $('.controlbox').toggle(); if($('.controlbox').is(":visible")){ $('.mainWindow').css('width','calc(100% - 330px)'); $('.controlbox__arrow').css('right','331px'); $('.controlbox__arrow').css('background-image','url(../arrow-right.png)'); } else{ $('.mainWindow').css('width','100%'); $('.controlbox__arrow').css('right','0'); $('.controlbox__arrow').css('background-image','url(../arrow-left.png)'); } syncWindow(); }); $("#selectlang").change(function(){ window.location.href=$(this).val(); }); }); function getMonth(position) { var tempEarthPosInDay= Math.round(365*(position)/(2*Math.PI)); var month = ""; if (tempEarthPosInDay <= 31) month = "Leden"; else if (tempEarthPosInDay <= 59) month = "Únor"; else if (tempEarthPosInDay <= 90) month = "Březen"; else if (tempEarthPosInDay <= 120) month = "Duben"; else if (tempEarthPosInDay <= 151) month = "Květen"; else if (tempEarthPosInDay <= 181) month = "Červen"; else if (tempEarthPosInDay <= 212) month = "Červenec"; else if (tempEarthPosInDay <= 243) month = "Srpen"; else if (tempEarthPosInDay <= 273) month = "Září"; else if (tempEarthPosInDay <= 304) month = "Říjen"; else if (tempEarthPosInDay <= 334) month = "Listopad"; else if (tempEarthPosInDay <= 365) month = "Prosinec"; return month; }