$(function() {
	$("#nav").lavaLamp({
		fx: "backout",
		speed: 600,
		click: function(event, menuItem) {
			return true;
		}
	});
	
	$(".item:odd").addClass("odd");
	
});


// PRESENTATION FIXES 

$(function() {
	$('#footer ul#footernav li:last-child a').css({ 'border' : 'none', 'padding-right' : '0' });
	$('#authors .column .column-top dl:last-child').css('margin', '0');
	
	
	var maxR = $('#range').height();
	$('#services').css('height', maxR);
	
	var maxC = $('#contact').height();
	$('#form').css('height', maxC);
	

});


