
	 
	 $(document).ready(function() {
	   $("#overviewImages > div").find("div").each(function(i) {
	     $(this).fadeTo((1500 * i) + 500, 0.85);
	     $(this).hover(
		     function() {
		     	$(this).stop(true, false);  $(this).fadeTo(400, 0);
			var offset = $(this).position();
			var top = offset.top;
			var left = offset.left;
			var width = $(this).width();
			
			var boltLeft = (left + (width / 2) - 16);
			
			$("#bolt").css("left",  boltLeft + "px");
			$("#bolt").fadeIn("fast");
		     },
		     function() {$(this).stop(true, false);  $(this).fadeTo(400, 0.85);  }
		     );
	     
	   });
	   
	   
	   $("#overviewImages").hover(
		   function() {},
		   function() { /*$("#bolt").fadeOut("fast");*/ }
		   );
	   
	 });
	 
	clearNavAndShow = function(num) {
		$("li.menu" + num).addClass("selected");
	}
	
	clearNav = function() {
		$("ul.leftnav li").each(
			function() { $(this).removeClass("selected"); }
			);
	}
	 
