jQuery(document).ready(function () {
						
jQuery('#rotating-testimonial').cycle({ 
	  fx:     'fade', 
	  timeout: 10000, 
	  delay:  -4000,
      next:   '#next-testimonial',
      prev:   '#prev-testimonial',
	  pause:	1
	});
	
	  /*hide mail*/
jQuery('.hide-email').each(function() {
      var $email = jQuery(this);
      var address = $email.text().replace(/\s*\[at\]\s*/, '@')
                                 .replace(/\s*\[dot\]\s*/g, '.');
      $email.html('<a href="mailto:' + address + '">' + address + '</a>');
   });
   
   
   });

