
fractalMapTooltip.rowEven = fractalMap.styleColour( [255,255,255] );
fractalMapTooltip.rowOdd = fractalMap.styleColour( [240,241,245] );
fractalMapTooltip.text = fractalMap.styleColour( [0,0,0] );

fractalMapTooltip.getTooltip = function() {

	var s; 
	var i = 0;

	// The width of the returned table - modify here to adjust
	var width = 275;
	
	s = '<TABLE id="outerTable" cellpadding="0" cellspacing="0" border="1" width="' + width + '"><TR><TD>';

	// The main section - displays the values of the specified fields
	s += '<TABLE cellpadding="0" cellspacing="0" border="0" width="' + width + '">';
	s += '<TR><TD align="right" colspan="3"><IMG src="' + this.GetFieldValueString('IMAGE') + '"/></TD></TR>';
	s += this.formatRow( i++, "RANK" );
	s += this.formatRow( i++, "SONG" );
	s += this.formatRow( i++, "ARTIST" );
	s += this.formatRow( i++, "ALBUM" );
	s += this.formatRow( i++, "GENRE" );
	s += this.formatRow( i++, "RELEASE_DATE" );

	// The help section - displays help at bottom of the tooltip (implement helpRow()).
	s += this.helpRow();
	s += '</TABLE>';

	s += '</TD></TR></TABLE>';

	return s;
}
