jQuery(document).ready(function(){

	setupImageRotator();

});

/* =========================================================================================== */


  function setupImageRotator(){
    jQuery('#rotator').cycle({
      fx: 'fade',
      random: 0,
      timeout: 5000,
      speed:  600,
      cleartypeNoBg: true
    });
		
		if(isIE()){
			jQuery('#rotatorOverlay').append("<div id='rotatorText2' class='rotatorText'>"+jQuery('#rotatorText1').html()+"</div>");
		}
  }


function isIE(){
  if (jQuery.browser.msie) {
    return parseInt(jQuery.browser.version, 10);
  }
  else{
    return false;
  }
}
