function registerTip() {

	$.fn.qtip.styles.mystyle = { // Last part is the name of the style
	   width: 200,
	   color: 'black',
	   textAlign: 'center',
	   border: {
	      width: 3,
	      color: '#FF6600'
	   },
	   tip: 'bottomLeft',
	   name: 'light' // Inherit the rest of the attributes from the preset dark style
	}

	$('.birthdayTip').qtip({
	   content: 'This information is required to ensure you meet the minimum required age to use this site per our terms of service.',
	   show: 'mouseover',
	   hide: 'mouseout',
	   position: { 
	   	corner: { target: 'topRight', tooltip: 'bottomLeft' } 
	   },
	   style: 'mystyle'
	});
	
	$('.genderTip').qtip({
	   content: 'This information is required to meet the information needs of our interactive application provider.',
	   show: 'mouseover',
	   hide: 'mouseout',
	   position: { 
	   	corner: { target: 'topRight', tooltip: 'bottomLeft' } 
	   },
	   style: 'mystyle'
	});
}