$(document).ready(function(){
	
	$("#nav").localScroll({
		duration: 1000,
		hash: true,
		offset: -20
	});
 	
	$("#nav li a").hover(
		function()
		{
      		$(this).animate( {marginRight: "5px", opacity: 1 }, 100);
      	},
      	function()
      	{
      		$(this).animate( {marginRight: "0px", opacity: 0.5 }, 100);
      	}
    );
   
    $("#photos a").hover(
		function()
		{
      		$(this).animate( {top: "5px" }, 100);
      	},
      	function()
      	{
      		$(this).animate( {top: "0px" }, 100);
      	}
    );
    
    $(function() {
		$('#photos a').lightBox();
	});
});