// JavaScript Document



$(function() {
	
		$('.periodic td').animate({
		
			"opacity" : .6
			
		});
		
		$('.periodic td').hover(function() {
		
			$(this).stop().animate({ "opacity" : 1 }, 'fast');
				
		}, function() {
			
			$(this).stop().animate({ "opacity" : .6 }, 1000);
		
		});
		
		


		
	
	});
