function TipEventHosting() {
	var tip = 'Our policies cover weddings, private events, and certain business events. If you choose &quot;A private party&quot; or &quot;A business or organization event,&quot; a list of eligible events will appear so you can select your event type.';
	var title = '<div style=\'background:url(/images/app/tooltip-header-bg.png) repeat-x; padding:5px\'>What type of event are you hosting?</div>';
	TipTemplate(tip, title);
}

function TipLiability() {
	var tip = 'Liability coverage is required by many venues and protects you if you&rsquo;re held responsible for property damage or bodily injury at your event or arising from it, with optional host liquor liability coverage for alcohol-related accidents.';
	var title = '<div style=\'background:url(/images/app/tooltip-header-bg.png) repeat-x; padding:5px\'>Liability Insurance</div>';
	TipTemplate(tip, title);
}

function TipCancellation() {
	var tip = 'Event Cancellation Insurance provides coverage for cancellation / postponement, lost deposits, no-show vendors, and more. 10 levels are available - select a level to see coverage details.';
	var title = '<div style=\'background:url(/images/app/tooltip-header-bg.png) repeat-x; padding:5px\'>Cancellation Insurance</div>';
	TipTemplate(tip, title);
}

function TipHonoree() {
	var tip = 'An Honoree is the person in whose honor the event is held – at a wedding the bride and groom are the honorees; at a birthday party, it\'s the person having a birthday. If your event has no honorees, leave these items blank.';
	var title = '<div style=\'background:url(/images/app/tooltip-header-bg.png) repeat-x; padding:5px\'>Honoree Details</div>';
	TipTemplate(tip, title);
}

function TipVenueDetails() {
	var tip = 'Please provide address information for the location(s) where your event will take place.';
	var title = '<div style=\'background:url(/images/app/tooltip-header-bg.png) repeat-x; padding:5px\'>Venue Details</div>';
	TipTemplate(tip, title);
}

function TipECDetails() {
	var tip = 'Please fill out this section if you are using a professional event coordinator / planner for your event.';
	var title = '<div style=\'background:url(/images/app/tooltip-header-bg.png) repeat-x; padding:5px\'>Event Coordinator Details</div>';
	TipTemplate(tip, title);
}

function TipPersonal() {
	var tip = 'Please provide your name, address, and other contact details. If you are purchasing coverage for a business or organizational event, you must also provide the name of your business or organization.';
	var title = '<div style=\'background:url(/images/app/tooltip-header-bg.png) repeat-x; padding:5px\'>Your Details</div>';
	TipTemplate(tip, title);
}

function TipCC() {
	var tip = 'Please provide your credit card details. (Our web application uses state-of-the art security measures and is monitored daily by independent web security certification service McAfee Secure.)';
	var title = '<div style=\'background:url(/images/app/tooltip-header-bg.png) repeat-x; padding:5px\'>Credit Card Details</div>';
	TipTemplate(tip, title);
}

function TipBilling() {
	var tip = 'Please provide your billing address.';
	var title = '<div style=\'background:url(/images/app/tooltip-header-bg.png) repeat-x; padding:5px\'>Billing Details</div>';
	TipTemplate(tip, title);
}

function TipTemplate(_tip, _title) {
	Tip(_tip, 
		TITLE, 
		_title,
		SHADOW, true, 
		STICKY, true, 
		WIDTH, 200, 
		PADDING, 5, 
		OFFSETY, -15, 
		OFFSETX, -20, 
		CLICKCLOSE, true, 
		TITLEFONTCOLOR, '#fff', 
		TITLEBGCOLOR, '', 
		TITLEPADDING, 0, 
		BORDERCOLOR, '#82AED3', 
		BGCOLOR, '#E1EBF4');
}
