var speed = 300;
$(document).ready(function() {
	$('#fg').fadeTo(0,0.01);
	
	$('#fg').hover(
		function() {
                    $(this).fadeTo(speed, 1);
		});
	$('#fg').mouseleave(
		function() { 
			$(this).fadeTo(speed, 0.01);
		});
 });
