
fractalMapTooltip.rowEven = fractalMap.styleColour( [255,255,255] );
fractalMapTooltip.rowOdd = fractalMap.styleColour( [237,243,254] );
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 title row - display's the position in the hierarchy (implement titleRow())
	s += '<TABLE cellpadding="0" cellspacing="0" border="0" width="' + width + '">';
	s += this.titleRow();
	s += '</TABLE>';

        s += '</TD></TR><TR><TD>';

	// The colour row - displays the value associated with the field used to colour the map
	s += '<TABLE style="padding-left: 2px;" cellpadding="0" cellspacing="0" border="0" width="' + width + '">';
	s += this.colourRow();
	s += '</TABLE>';

        s += '</TD></TR><TR><TD>';

	// The main section - displays the values of the specified fields
	s += '<TABLE cellpadding="0" cellspacing="0" border="0" width="' + width + '">';

s += this.formatRow( i++, "06_03_A" );

s += this.formatRow( i++, "06_03_A_v_B__" );

s += this.formatRow( i++, "FIELD5" );

s += this.formatRow( i++, "2003_A" );

s += this.formatRow( i++, "2003_A_v_B__" );

s += this.formatRow( i++, "FIELD10" );

	// The help section - displays help at bottom of the tooltip (implement helpRow()).
	s += this.helpRow();
	s += '</TABLE>';

	s += '</TD></TR></TABLE>';

	return s;
}

fractalMapTooltip.titleRow = function() {

	var s='';
	var d;

	var heightSeparatorRow = 1;
	var colourSeparatorRow = "#990000";
	var colourHeader = "#EE0000";

	return s;
}

