$(document).ready(function() {	
	$("#nav").lavaLamp({
		speed: 400,
		click: function(event, menuItem) {
		}
	});	
});

function scrollTo(id){
	$('html, body').animate({scrollTop: $("#"+id).offset().top},'slow', 'swing');
}

function selectFeature(id){
	$('div.section:visible').hide();
	$('#'+id).fadeIn('slow');
}
