// JavaScript Document

$(document).ready(function(){
	
	$("#stuff").hide("fast");
	$("#hit").hover(function() { 
        $(this).stop(true,true).fadeTo('slow',1);
        $("#stuff").stop(true,true).show('slow');
    }, function() { 
        $(this).stop(true,true).fadeTo('slow',1);
        $("#stuff").stop(true,true).hide('slow');
		
    }
);
	
	
});



