$(document).ready(function() {
  
	$('#tablogin > ul').tabs();
	$('#profiltab > ul').tabs();
	$('#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

});

 $('#link5').click(function() { // bind click event to link
$options.tabs('select', 4); // 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


});
 var $options3 = $('#tablogin > ul').tabs(); // first tab selected
 $('#welcome').click(function() { // bind click event to link
$options2.tabs('select', 1); // switch to 2nd tab


});
	
	var $options4 = $('#profiltab > ul').tabs(); // first tab selected
 $('#linkprofil2').click(function() { // bind click event to link
$options4.tabs('select', 1); // switch to 2nd tab


});

 $('#linkprofil3').click(function() { // bind click event to link
$options4.tabs('select', 2); // switch to 2nd tab


});

	var $options5 = $('#testimonitab > ul').tabs(); // first tab selected
 $('#linktestimoni2').click(function() { // bind click event to link
$options5.tabs('select', 1); // switch to 2nd tab


});

 $('#linktestimoni3').click(function() { // bind click event to link
$options5.tabs('select', 2); // switch to 2nd tab


});



	var $options6 = $('#hotnewstab > ul').tabs(); // first tab selected
 $('#linkhotnews2').click(function() { // bind click event to link
$options6.tabs('select', 1); // switch to 2nd tab


});

 $('#linkhotnews3').click(function() { // bind click event to link
$options6.tabs('select', 2); // switch to 2nd tab


});



});


