// jQuery
jQuery.noConflict();
(function($) { 
  $(function() {
	//innerfade 
	if( $("#testimonial").length > 0 ){
		$('#testimonial ul').innerfade({ 
			speed: 'slow',
			timeout: 6000, 
			type: 'random', 
			containerheight: '1em' 
		});
	}

  });
})(jQuery);

