var $tabs = $('#tabs').tabs(); // first tab selected

$('#tabs0').click(function() { // bind click event to link
    $tabs.tabs('select', 0); // switch to third tab
    return false;
});
$('#tabs1').click(function() { // bind click event to link
    $tabs.tabs('select', 1); // switch to third tab
    return false;
});
$('#tabs2').click(function() { // bind click event to link
    $tabs.tabs('select', 2); // switch to third tab
    return false;
});
$('#tabs3').click(function() { // bind click event to link
    $tabs.tabs('select', 3); // switch to third tab
    return false;
});
$('#tabs4').click(function() { // bind click event to link
    $tabs.tabs('select', 4); // switch to third tab
    return false;
});
$('#tabs5').click(function() { // bind click event to link
    $tabs.tabs('select', 5); // switch to third tab
    return false;
});
$('#tabs6').click(function() { // bind click event to link
    $tabs.tabs('select', 6); // switch to third tab
    return false;
});
$('#tabs7').click(function() { // bind click event to link
    $tabs.tabs('select', 7); // switch to third tab
    return false;
});
