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