$(document).ready(function() {
	$('#tabvanilla > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
	$('#featuredvid > ul').tabs();
});

var $tabs = $('#home').tabs(); // first tab selected

$('#link').click(function() { // bind click event to link
    $tabs.tabs('select', 2); // switch to third tab
    return false;
});