$(document).ready(function() {
  

	$('#tabdbc > ul').tabs();
	$('#testimoni > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
	$('#keuntungan > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });

var $options = $('#tabdbc > ul').tabs(); // first tab selected
 $('#link2').click(function() { // bind click event to link
$options.tabs('select', 1); // switch to 2nd tab

});
 $('#link3').click(function() { // bind click event to link
$options.tabs('select', 2); // switch to 2nd tab

});

 $('#link4').click(function() { // bind click event to link
$options.tabs('select', 3); // switch to 2nd tab

});

var $options2 = $('#keuntungan > ul').tabs(); // first tab selected
 $('#linkkeu2').click(function() { // bind click event to link
$options2.tabs('select', 1); // switch to 2nd tab


});

 $('#linkkeu3').click(function() { // bind click event to link
$options2.tabs('select', 2); // switch to 2nd tab


});
	
});
