// JavaScript Document $(document).ready(function(){ //lightbox $(".fancybox").fancybox({ openEffect : 'none', closeEffect : 'none' }); //rss mtbo if ($('#box_rss_mtbo').length != 0) { $.get('ajax.php', { akce: 'getRssMtbo' }, function (data) { $('#box_rss_mtbo').empty().append(data); return false; },'html'); } //rss ob if ($('#box_rss_ob').length != 0) { $.get('ajax.php', { akce: 'getRssOb' }, function (data) { $('#box_rss_ob').empty().append(data); return false; },'html'); } //rss lob if ($('#box_rss_lob').length != 0) { $.get('ajax.php', { akce: 'getRssLob' }, function (data) { $('#box_rss_lob').empty().append(data); return false; },'html'); } //menu v mobilni verzi $('nav#mobile_menu').hide(); $('#pull_menu').click(function() { if ($('nav#mobile_menu').is(':visible')) { $(this).removeClass('active'); } else { $(this).addClass('active'); } $('nav#mobile_menu').toggle(300); return false; }); //formulář $('form .click_holder').click(function() { if ($(this).val() == $(this).attr('placeholder')) $(this).val(''); }); $('form .click_holder').blur(function() { if ($(this).val() == '') $(this).val( $(this).attr('placeholder') ); }); if ($('form .click_holder').val() == '') $('form .click_holder').val( $(this).attr('placeholder') ); $('#sidebox a.button').click(function() { $('html,body').animate({ scrollTop: $("#anch_partneri").offset().top }, 1000); }); //posun fotek var zmena = 0; //počet posunů, výchozí dle počtu viditelných fotek //zmena = parseInt($('#pocet_posun_0').val()); var sirka = 950; //šířka posouvaného bloku var celkem_posun = 1; if ($('#foto_container').width() < 900 && $('#foto_container').width() > 600) { sirka = 650; celkem_posun = 1; } else if ($('#foto_container').width() < 600) { sirka = 345; celkem_posun = 2; } $('.cmd_pohyb').click(function(){ var posun = ($(this).hasClass("arrow_next") ? 1 : 0 ); if (posun == 1 && zmena < celkem_posun) { //posun vpřed $("#foto_slider").animate({ marginLeft: "-="+ sirka +"px", }, 500 ); zmena++; } else if (posun == 0 && zmena > 0) { //posun vzad $("#foto_slider").animate({ marginLeft: "+="+ sirka +"px", }, 500 ); zmena--; } return false; }); //tabs $('#zalozky a').click(function (e) { e.preventDefault() $(this).tab('show'); }); //carousel $('.carousel').carousel(); $('.cmd_popis').click(function(){ var id_popis = $(this).attr('id').substring(10); $('#popis_'+id_popis).toggle(300); //alert(id_popis); return false; }); //ziska atribut z img a vlozi jej jako samostatny tag $('.novinka.detail.nova img').each( function(idx,img) { var pTitle = img.alt; if (pTitle != "") $(img).wrap("
").after(''+ pTitle +''); }); //rozcestnik - pri necinnosti se zmensi if ($('#rozcestnik').length) { var timeoutId; //$('#rozcestnik').addClass('small'); //$('header.podstranka').addClass('small'); /* $("#rozcestnik").mousemove(function() { clearTimeout(i); $('#rozcestnik').removeClass('small'); $('header.podstranka').removeClass('small'); i = setTimeout(function () { $('#rozcestnik').addClass('small'); $('header.podstranka').addClass('small'); }, 2000); }); */ $("#rozcestnik").hover(function() { if (!timeoutId) { timeoutId = window.setTimeout(function() { timeoutId = null; $('#rozcestnik').removeClass('small'); $('header.podstranka').removeClass('small'); }, 1000); } }, function () { if (timeoutId) { window.clearTimeout(timeoutId); timeoutId = null; } else { timeoutId = window.setTimeout(function() { timeoutId = null; $('#rozcestnik').addClass('small'); $('header.podstranka').addClass('small'); }, 2500); } }); } }); //G+ window.___gcfg = {lang: 'cs'}; (function() { var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true; po.src = 'https://apis.google.com/js/platform.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s); })(); //Facebook (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/cs_CZ/sdk.js#xfbml=1&appId=691677830899376&version=v2.0"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); //twitter !function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs"); //window.twttr=(function(d,s,id){var t,js,fjs=d.getElementsByTagName(s)[0];if(d.getElementById(id)){return}js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);return window.twttr||(t={_e:[],ready:function(f){t._e.push(f)}})}(document,"script","twitter-wjs"));