$(function(){

    $('input[type=text], .search_field').one('focus', function(){
        $(this).val('').addClass('focussed');
    });

    $('#search #side_a li').click(function()
    {
        if ($(this).hasClass('checked'))
        {
            $(this).removeClass('checked').find('input').removeAttr('checked');
        }
        else
        {
            if ($(this).attr('class') == 'cat_all')
            {
                $(this).parent().find('li').removeClass('checked').find('input').removeAttr('checked');
            }
            else
            {
                $(this).parent().find('.cat_all').removeClass('checked').find('input').removeAttr('checked');
            }
            $(this).addClass('checked').find('input').attr('checked', 'checked');
        }
    })

    $('#ternav.long').jScrollPane({
        showArrows: true,
        scrollbarWidth: 14,
        scrollbarMargin: 15
    });

    $('#bigsearch').focus();

})