
	$(document).ready(function(){

		$('#sidepic').hover(function() {
		
			$(this).css({ opacity: 0.7 });
		
		}, function() {
			
			$(this).css({ opacity: 1 });
		
		});
		
		$('.gallery a').lightBox();
		
	});
	
	function scrollTo(id) {
	
		$('html, body').animate({
			scrollTop: $(id).offset().top
		}, 1000);

	
	}
