// JavaScript Document
$(document).ready(function(){	
	var $tabs = $('#contentFeatures > ul').tabs(); // first tab selected
	
	$('#goto_tab1').click(function() { // bind click event to link
		$tabs.tabs('select', 0); // switch to third tab
		return false;
	});
	$('#goto_tab2').click(function() { // bind click event to link
		$tabs.tabs('select', 1); // switch to third tab
		return false;
	});
	$('#goto_tab3').click(function() { // bind click event to link
		$tabs.tabs('select', 2); // switch to third tab
		return false;
	});
	$('#goto_tab4').click(function() { // bind click event to link
		$tabs.tabs('select', 3); // switch to third tab
		return false;
	});
	$('#goto_tab5').click(function() { // bind click event to link
		$tabs.tabs('select', 4); // switch to third tab
		return false;
	});
	$('#goto_tab6').click(function() { // bind click event to link
		$tabs.tabs('select', 5); // switch to third tab
		return false;
	});
	$('#goto_tab7').click(function() { // bind click event to link
		$tabs.tabs('select', 6); // switch to third tab
		return false;
	});
});	