$(document).ready(function(){	
		function inTweakCms()
		{
			if( window.location.hostname.indexOf("cms") < 0)
				return false;
			else 
				return true;
		}
			if(!inTweakCms()){
				$('div.cycle').cycle({
					fx: 'fade',
					pause: true,
					timeout: 12000,
					delay: 12000,
					cleartypeNoBg: true			
				});
			}
			
			//show random of the Testimonials
			
			var testimonials =  $('div.random').find('div.testimonial');
			var numTestimonials = testimonials.length;			
			var random = Math.floor(Math.random()*numTestimonials);
			var randomTestimonial = $(testimonials[random]);
			$(randomTestimonial).css({display: 'block'});
			
			Cufon.replace('#columnborder h2');
			Cufon.replace('.vcard span');
			Cufon.replace('.vcard p');
			
});
