	   $(function() {
					 $('#navRoll img').animate({"opacity": .5 }); 

					 $('#navRoll img').hover(function() {
															$(this).stop().animate({ "opacity": 1 }); 
													 	 }, function() {
																   		  $(this).stop().animate({ "opacity": .5 });
																   		}
												);
        });
