$(document).ready(function() {

	
		$('#nav li a').click(function(){
				getID = $(this).attr('href');
				$target = $(getID);
				var targetOffset = $target.offset().top;
				$('html,body').animate({scrollTop: targetOffset}, 1000);
				return false;
		})
		
		$('.top').click(function(){
				$('html,body').animate({scrollTop: 0}, 1000);
				return false;
		});
		
		//$('#wrapper').css("height", $(document).height()+"px");
		$('a[rel*=lightbox]').lightBox();
		
});




