$(document).ready(function(){	
	$("#slider").easySlider({
		controlsShow:	true,
		speed: 			800,
		auto:			true,
		pause:			5000,
		continuous:		true
	});
	
	$("#topNav").lavaLamp({
		fx: "backout",
		speed: 700
	});
	
	$("img.imageGrey").hover(function() {$(this).animate({"opacity": "0"}, 300);},function() {$(this).animate({"opacity": "1"}, 300);});
});