// Slideshows and Testimonials

$(document).ready(function() {
	$('#slideshow').cycle({
		fx:'scrollLeft',
		speed:    1500
	});
	$('.testimonials').cycle({
		fx:'fade',
		speed:    4000
	});
	 
});

//Email protection code - PDG

   function noSpam(user,domain) {
      locationstring = "mailto:" + user + "@" + domain;
      window.location = locationstring;
      }

