$( document ).ready( function() {
	
	$( '#item' ).bind( 'mouseenter', function() {
		$( '#over' ).animate( { opacity: 1 }, { duration: 300, queue: false } );
	});
	
	$( '#item' ).bind( 'mouseleave', function() {
		$( '#over' ).animate( { opacity: 0 }, { duration: 300, queue: false } );
	});
});
