$(document).ready(function(){
    $(".profile-visible").hover(function(){
        var elements = {};
        
        elements['dd'] = $(this).prev('dd');
        elements['dt'] = elements['dd'].prev('dt');
        
        $.each(elements, function(k, $element){
            $element.addClass('profile-visible-hovered');
        });
        
    }, function(){
        $(".profile-visible-hovered").removeClass('profile-visible-hovered');
    });
    
    /* Wyszukiwarki */
    var searchInputVal = '';
    $("#search").find('input[type=text]').focus(function(){
        searchInputVal = $(this).val();
        $(this).val('');
    });
    $("#search").find('input[type=text]').focusout(function(){
        if($(this).val().length < 1) {
            $(this).val(searchInputVal);
        }
    });
    
    $(".mini-help").find('a').hover(function(){
        $(this).next('span').show();
    }, function(){
        $(this).next('span').hide();
    }).click(function(){
        return false;
    });
});
