$(document).ready(function() {

		// Slideshow image fade
		$('#slideShow').cycle({ 
	    fx: 'fade',
	    speed: 500,
	    pause: 1
	 	});

		// This is for smooth scrolling on anchor links
		$.smoothAnchors("normal");
		
		//Pretty Photo Lightbox
		$(document).ready(function(){
			$("a[rel^='prettyPhoto']").prettyPhoto();
		});

});