 var speed = 120;
	$(document).ready(function(){
		$(".action").fadeTo(speed, 0.3);
		$(".action").mouseover(function() {
			// $(this).css('background-color','#3b3b3b');
			$(this).fadeTo(speed, 0.8);
		});
		$(".action").mouseout(function() {
			$(this).fadeTo(speed, 0.3);
			// $(this).css('background-color','');
		});
	}); 