$(document).ready(function(){ 

    if( $('input[type=text]').lenght ){ 
        $('input[type=text]').attr("autocomplete", "off").css('border',border);
    }
    
    $("a.popup").click(function(event){
        window.open($(this).attr('href'));
        event.preventDefault();
    });
    
    var webcam = function(){
        var d = new Date();
        $('#id-webcam').attr('src','http://kamery.comanet.cz/kam_09.jpg?'+d.getTime());
        setTimeout(function(){webcam()},3000);
    }
    
    if( $('#id-webcam').length ){
        webcam();
    }
    
    /* zhasnuti flashovych zprav z nette */
    setTimeout(function(){
        $('.flash').fadeOut();
    }, 3000);    
    
});

