$(function() { 
	// lavalamp effect for global navigation
	if ($("#frontpage").length === 0) {
		$("#navigation").lavaLamp({ fx: "backout", speed: 650 });
	} 

	// add javascript class to body
	$("body").addClass("js");

	// add even class for even table rows
	$("#content table tr:even").addClass("even");
});

