$(function() { $('a.sipka_vyskakovaci').click(function () { $('.vyskakovaci').not( $(this).parents('.vyskakovaci') ).hide('slow'); $('.vyskakovaci', $(this).parent()).first().show('slow'); return false; }); $('a.krizek').click(function () { $(this).parents('.vyskakovaci').first().hide('slow'); $('.vyskakovaci', $(this).parent().parent()).hide('slow'); return false; }); }); $(document).ready(function() { var inputy = []; $('.form_event_inputs').each(function(index) { inputy[this.name] = this.value; }); $('.form_event_inputs').focus(function() { if (this.value == inputy[this.name]) { $(this).val(''); } }); $('.form_event_inputs').blur(function() { if (this.value == '') { $(this).val(inputy[this.name]); } }); $('#vice_informaci').click(function() { if ( $('#formular_informace').css('display') == "none" ) $('#formular_informace').show('slow'); else $('#formular_informace').hide('slow'); }); $('#zavolejte_nam').mouseenter(function() { if ( $('#formular_volani').css('display') == "none" ) { $('#spodni_mezera').slideDown('fast', function() { $('#formular_volani').show('fast'); }); } }); $('#formular_volani').mouseleave(function() { $('#formular_volani').hide('fast', function() { $('#spodni_mezera').slideUp('fast'); }); }); $('a.external').click(function() { return !ExternalLink(this.href); }); });