$(document).ready(function(){

// Add a two lines, one for Link and one for tip.
// Add a sequential number to each variable name.
// Link must be exact or it will not work.

	var link1 = '"/his/CAPRI/default.aspx"';
	var tip1 = 'Click to get back to the CAPRI home page.';
	var link2 = '"/his/CAPRI/Pages/ProgressReport.aspx"';
	var tip2 = 'This is the weekly progress report with graphs for each prison site.';
	var link3 = '"/his/CAPRI/WorkingDocuments/Forms/Standard.aspx"';
	var tip3 = 'This is the document library to find and update all:<ul><li>Progress Tool</li><li>Productivity  Reports.</li></ul>';
	var link4 = '"/his/CAPRI/Lists/Calendar/calendar.aspx"';
	var tip4 = 'This calendar shows the schedule and location of nurses and other important meetings.';
	var link5 = '"/his/CAPRI/Lists/Facilities/AllItems.aspx"';
	var tip5 = 'A list of all the facilities, the associated nurse, CDCR advisor and location.';
	var link6 = '"/his/CAPRI/Lists/Team%20Discussion/AllItems.aspx"';
	var tip6 = 'Here you will find topics that are being discussed by the CAPRI team.';
	var link7 = '"/his/CAPRI/mm-capri"';
	var tip7 = 'Find the current and past meeting minutes here.';
	var link8 = '"/his/CAPRI/Pictures/Forms/AllItems.aspx"';
	var tip8 = 'Pictures of the CAPRI team.';

// Add a line for each link and tip added above

$("[href="+link1+"]").simpletip({content: tip1,	offset: [50,0] });
$("[href="+link2+"]").simpletip({content: tip2,	offset: [50,0] });
$("[href="+link3+"]").simpletip({content: tip3,	offset: [50,0] });
$("[href="+link4+"]").simpletip({content: tip4,	offset: [50,0] });
$("[href="+link5+"]").simpletip({content: tip5,	offset: [50,0] });
$("[href="+link6+"]").simpletip({content: tip6,	offset: [50,0] });
$("[href="+link7+"]").simpletip({content: tip7,	offset: [50,0] });
$("[href="+link8+"]").simpletip({content: tip8,	offset: [50,0] });

});
