$(function () {

// Tabs fading in/out in inbox and network pages
	$('#search-1 > ul').tabs({ fx: { opacity: 'toggle' } });
	
	var $tabs = $('#search-1 > ul').tabs(); // first tab selected
	
	$('#search-jump-seeker').click(function() { // bind click event to link
	    $tabs.tabs('select', 1); // switch to second tab
	    return false;
	});
	
	$('#search-jump-two-seeker').click(function() { // bind click event to link
	    $tabs.tabs('select', 0); // switch to first tab
	    return false;
	});
	
	$('#search-jump-two-company').click(function() { // bind click event to link
	    $tabs.tabs('select', 1); // switch to second tab
	    return false;
	});
	
	$('#search-jump-company').click(function() { // bind click event to link
	    $tabs.tabs('select', 0); // switch to first tab
	    return false;
	});
	
});