/*** Searchbox home tabs ***/
$(document).ready(function(){
    $('#searchbox-tabs a').click(function(){
        $('#searchbox-tabs a').removeClass('active');
        $(this).addClass('active');
        href = $(this).attr('href');
        $('#searchbox-tabs-wrapper .tab-block').removeClass('tab-block-active');
        $(href).parent().parent().addClass('tab-block-active');
        return false;
    });
    $('#trigger_used').click(function(){
        loadAJAH('searchbox_home_newused.php');
    });
    
});