$(document).ready(function(){
    /*$('.lightbox').lightBox({
        txtImage: 'Fotografie',
        txtOf: 'z'
    });*/

    FormValidator.init();
    
    //menu animation
    $('#main-menu li span').addClass('rel');
    $('#main-menu li').addClass('pointer').hover(
        function(){
            $(this).find('span').stop().animate({left:'5px'},150);
        },
        function(){
            $(this).find('span').stop().animate({left:'0px'},150);
        }
    ).click(function(){
        window.location.replace($(this).find('a').attr('href'));
    });
    
    //tile animation
    $('.dlazdice-content').css('height','47px');
    $('.dlazdice').hover(
        function(){
            $(this).find('.dlazdice-content').stop().animate({height:'180px'},250);
        },
        function(){
            $(this).find('.dlazdice-content').stop().animate({height:'47px'},250);
        }
    );
});


   
function addListener(evnt, func, elem, bubble) {
    if (elem.addEventListener) // W3C DOM
        elem.addEventListener(evnt,func,bubble);
    else if (elem.attachEvent) { // IE DOM
        var r = elem.attachEvent("on"+evnt, func);
        return r;
    }
}

function noIE(){
    if($.browser.msie && parseInt($.browser.version) < 7){
        var noIEdiv = $('<div id="no-ie"></div>');
        $('body').append(noIEdiv);
        $.get('/public/templates/no-ie.tpl.php', function(data){
          $('#no-ie').html(data);
        });
    }
}
