var timerxx = null;
function openContent(trigger,divID){
  $('#ss_trigger a').each(
    function(){
      $(this).css({'background-color':'#ffffff','color':'#666666'});
    }
  );
  $('#ss_contents div').hide();
  $('#'+divID).show();
  $(trigger).css({'background-color':'#ab2f2d','color':'#ffffff'});
  if(timerxx != null) clearTimeout(timerxx);
  timerxx = setTimeout(
    function(){
    var nextAnchor = ($(trigger).next('a').text() == '') ? $('#ss_trigger a:first') : $(trigger).next('a');
    nextAnchor.click();
    }, 7000 // 7 detik waktu perpindahan content
  );
 }
 $(document).ready(
    function(){
      openContent($('#firstSlide'),'div1');
  }
 )
