$(document).ready(function() {
    
    var buffer;

    $('#searchBox').focus(function(){
        buffer = $(this).val();
        $(this).val("");
    });

    $('#searchBox').blur(function(){
        if ( $(this).val() == "" ) {
            $(this).val(buffer);
        }
    });

    $('#searchBtn').click(function(){
      if ( $(this).val() != buffer && $(this).val() != "undefined") {
        $('#searchForm').submit();
      }
    });

    $(".galerie_hover img").css("opacity", "1");
    $(".galerie_hover .galerieDescription").css("opacity", "0");
    $(".event_view .image_reel .eventDescription .background").css("opacity", "0.5");

    $(".galerie_hover .element a").hover(function(){
        $(this).find('img').animate({opacity: 0.3}, 500);
        $(this).find('.eventDescription').animate({opacity: 0}, 500);
        $(this).find('.eventDescription .background').animate({opacity: 0}, 500);
        $(this).find('.galerieDescription').animate({opacity: 1}, 500);
    }, function(){
        $(this).find('img').animate({opacity: 1}, 500);
        $(this).find('.eventDescription').animate({opacity: 1}, 500);
        $(this).find('.eventDescription .background').animate({opacity: 0.5}, 500);
        $(this).find('.galerieDescription').animate({opacity: 0}, 500);
    });

    //lightbox
    $(function() {
        $('.photos_view .element .lightBox').lightBox();
    });

});

