$(document).ready(function(){
	//Examples of how to assign the ColorBox event to elements
	$(".internal").colorbox();
	
	$.fn.qtip.defaults.position.corner = {
      target: 'topMiddle',
      tooltip: 'bottomMiddle'
	};
	
	$.fn.qtip.defaults.style = {
			background: '#FAC9CD',
			color: '#534743',
     	width: 275,
      border: {
         width: 3,
         radius: 8,
         color: '#de9198'
      },
      name: 'cream' // Inherit from preset style
	};
	
	$("#get-this-18_").qtip({
   content: 'To register by phone please call 1.888.391.5433 Monday through Friday from 9:00am to 6:00pm Eastern Standard Time.',
   style: {
   		tip: 'bottomMiddle'
   }
	});
	
	$("#get-this-20_").qtip({
   content: 'To register by mail please download the <a href="files/registration.pdf" target="_blank">So Get This Registration Form</a>.  Please complete this form in its entirety and mail to:<br /><br /><strong>Faith Life Now</strong><br />So Get This Registration<br />PO Box 779<br />New Albany OH 43054<br /><br /> You will receive a phone call confirming your registration once it is processed in-house.  Please allow 1-2 weeks to process registrations.  ALL mail registrations must be postmarked by Monday March 1st to ensure it is received in time.  If you have any questions about registering via the mail please feel free to call our customer service department at 1.888.391.5433.',
   style: {
     	width: 400,
   		tip: 'bottomRight'
   },   
   hide: { when: 'mouseout', fixed: true },
   position: {
      corner: {
         target: 'topMiddle',
         tooltip: 'bottomRight'
      }
   }

	});
	
	
});
