$(document).ready(function(){
/* EXAMPLE SYNTAX
	 $("a").click(function(){
	   alert("Example");
	 });
	$('#gallery a').lightBox(); // Lightbox script. 
*/
	$('.lightbox').lightBox(); // Lightbox script. 
	$(".galleryThumb").hover(function() {
		$(this).animate({backgroundColor:"#DAE0D5"},200);
	},function() {
		$(this).animate({backgroundColor:"#f6ffef"},100);
	});
});
$(window).load(function(){
	$("#mainNav").lavaLamp({ fx: "backout", speed: 500 });
	
})