jQuery(document).ready( function($)
{
	$( '.ttip-div' ).hide().appendTo( $('body') );
	$( '.ttip-span' ).hover( function( e )
	{
		var tooltip =$( '#t'+$( this ).attr( 'id' ) );
		tooltip.
			css( 'top', (e.pageY - parseInt(tooltip.height()) - 15) + 'px' ).
			css( 'left', e.pageX - 20 + 'px' ).
			fadeIn( 400 );
	}, function()
	{ 
		$( '#t'+$( this ).attr( 'id' ) ).fadeOut( 200 );
	});
	$( '.ttip-span' ).mousemove( function( e )
	{
		var tooltip =$( '#t'+$( this ).attr( 'id' ) );
		tooltip.
			css( 'top', (e.pageY - parseInt(tooltip.height()) - 20) + 'px' ).
			css( 'left', e.pageX - 55 + 'px' );
	} );
} );
