
	$(document).ready(function(){

		$('#slider').cycle({ 
			fx:     'fade', 
			timeout:  5000,
			speed:500
		});
		
		$('.gallery a').lightBox();
		
	});
	
	function scrollTo(id) {
	
		$('html, body').animate({
			scrollTop: $(id).offset().top
		}, 1000);

	
	}
