$(function() {
    var
        $search = $('#quick_search_query'),
        $searchLabel = $search.prev('label');
		
		

		
    // Resetowanie styli dla dynamicznych elementów.
    if ($search.val() !== '') {
        $searchLabel.hide();
    }

    $search
        .focus(function () {
            $searchLabel.fadeOut(100);
        })

        .blur(function () {
            if (this.value === '') {
                $searchLabel.fadeIn(200);
            } else {
                $searchLabel.fadeOut(100);
            }
        });
});

