$(document).ready(function(){
	
	$("a, input").hover(function() {
	  $(this).stop().animate({ opacity: "0.7"}, 400);
	}, function() {
	  $(this).stop().animate({ opacity: "1"}, 400);
	});
	
	$("#footer_right img, #footer_right a, input, textarea").hover(function() {
	  $(this).stop().animate({ opacity: "1"}, 400);
	}, function() {
	  $(this).stop().animate({ opacity: "0.7"}, 400);
	});
	
});
