// Slides

	$(function(){
		$('#slides').slides({
			preload: true,
			preloadImage: '../img/cm-slider-loading.gif',
			play: 3000,
			pause: 2500,
			hoverPause: true
		});
	});

// EaseOut

  $(function() {
		$("a").click(function() {
			if(this.hash) {
				var hash = this.hash.substr(1);
				var $toElement = $("a[name="+hash+"]");
				var toPosition = $toElement.position().top;
				$("body,html").animate({
					scrollTop : toPosition
				},2000,"easeOutExpo");
				return false;
			}
		});
	});

// NoSpam

  $(document).ready(function() {
	  $('.email').nospam({
		  replaceText: true,
		  filterLevel: 'normal'
	  });
  });
