var fixSafari = true;
var rotate_index = 0;
var rotate_duration = 8;

jQuery( document ).ready( function () {

  if (!jQuery.browser.msie && rotating_text){
    jQuery("div#divRotate p").jTypeWriter({duration:rotate_duration, text:rotating_text[rotate_index], onComplete:loopText});
  }
  
  
  //jQuery( 'div.search a' ).click( function () {
  //  var sMode = (jQuery( this ).attr( 'id' ).split( '_' ))[1];
  //  if (carouselTimerID > 0){
  //  	window.clearTimeout ( carouselTimerID );
  //  }
    //switchMode( sMode );
  //} );
  
} );

function loopText(){
  rotate_index++;
  if (rotate_index >= rotating_text.length){
    rotate_index = 0;
  }
  setTimeout("jQuery('div#divRotate p').jTypeWriter({duration:rotate_duration, text:rotating_text[rotate_index], onComplete:loopText});", 3000);
}



