$(document).ready(function()
	{
		//size tooltip
		$("#tooltipSize").qtip({
				content : '<b>Size your system</b>: 50litres hot water per person per day.'+
									'<br />Over size by 50litres for domestic hot water purposes'+
									'<br />4 person home = 250litres',
				show: 'mouseover',
				hide: 'mouseout',
				style : {background:'#EAF4FF'}
			});
		
		//	transfer Type
		$("#tooltipTransferType").qtip({
				content : '<b>Direct</b>: no frost or freezing temperatures ever.'+
									'<br />Only water with a low chemical content where no lime scale build up'+
									'<br /><b>Direct frost resistant</b>: Can handle frost but not lime scale build up'+
									'<br /><b>Indirect</b>: Can handle frost conditions, lime scale build up',
				show: 'mouseover',
				hide: 'mouseout',
				style : {background:'#EAF4FF'}
			});	

		//	circulation Type
		$("#tooltipCirculationType").qtip({
				content : '<b>Thermosiphon</b>: natural convection circulates water. Tank must be above solar collector'+
									'<br /><b>Pumped</b>: water forcibly circulates, either by Electrical pump or by photovoltaic (solar electricity) pump',
				show: 'mouseover',
				hide: 'mouseout',
				style : {background:'#EAF4FF'}
			});		
			
		//	collector Type
		$("#tooltipCollectorType").qtip({
				content : 'Both types are tested to the same minimum standard.'+
									'<br /><b>Flat plate <br/>Vacuum tubes</b>: glass tubes',
				show: 'mouseover',
				hide: 'mouseout',
				style : {background:'#EAF4FF'}
			});						
		
			//	SABS Status
		$("#tooltipSABSStatus").qtip({
				content : '<b>SABS Mark Approval</b>: system tested <u>and</u> factory checked for quality compliance of manufacturing'+
									'<br/><b>Test report</b>: one system tested',
				show: 'mouseover',
				hide: 'mouseout',
				style : {background:'#EAF4FF'}
			});		
			
			
	});