﻿$(document).ready(function() 
{
   // Match all link elements with href attributes within the content div
   $('a[href].tooltip1').qtip(
   {
      content: 'On-Demand Lessons are self-guided, interactive tutorials that use a combination of written and verbal instruction, animated demonstration, and hands-on functionality.',
style: {
	width: 250,
	padding: 5,
	background: '#cc0000',
	color: 'white',
	textAlign: 'center',
	cursor: 'pointer',
	border: {
		width: 7,
		radius: 5,
		color: '#cc0000'
		}
	}
   });
$('a[href].tooltip2').qtip(
   {
      content: 'LRT is done on your computer using GoTo Webinar. An instructor will demonstrate how to use the software on a fully-functioning, realistic demo database. These sessions are offered daily and are live, allowing you to ask questions as you go.',
style: {
	width: 250,
	padding: 5,
	background: '#cc0000',
	color: 'white',
	textAlign: 'center',
	cursor: 'pointer',
	border: {
		width: 7,
		radius: 5,
		color: '#cc0000'
		}
	}
   });
});
