$(document).ready(function(){
	
	$("ul#menu").lavaLamp();

	$("#footer").mouseover(
		function() {
			$("#footer").stop().animate({bottom: "0px" }, {duration:250});
		}
	);
			
	$("#footer").mouseout(
		function() {
			$("#footer").stop().animate({ bottom: "-35px" }, {duration:2000});
		}
	);

	$("#nav ul a, #more a").click(
		function(event) {
			event.preventDefault();
			var loc = $(this).attr("href");    
			var loc = loc.substring(1);
			var dest = 0;
			if (loc == "") {
				dest = 0;
			} else {
				dest = $("a[name='"+loc+"']").offset().top;	
			}
			$("body, html").stop().animate({scrollTop: dest}, {duration:2000});
		}
	);
	
});
