jQuery().ready
(
	function() 
	{
		jQuery( 'div.icon a' ).bind('mouseenter', function( e,i ){
			jQuery( '#product-'+jQuery( this, i ).parent().attr( 'id' ) ).css( 'left', e.pageX-25).css( 'top', e.pageY+27).css( 'position', 'absolute' ).show();
			
		}).mousemove(function(e,i){
			jQuery( '#product-'+jQuery( this, i ).parent().attr( 'id' ) ).css( 'left', e.pageX-25).css( 'top', e.pageY+27).css( 'position', 'absolute' ).show();
	    
	    
	    }).bind('mouseleave', function(i){
	        jQuery( '#product-'+jQuery( this, i ).parent().attr( 'id' ) ).hide();
		});
	}
);

 