﻿// CARE CUSTOM JAVASCRIPT
//==============================================================================

// For CARE IT use: please add any extra javascript functions which you require below
// If you want to trigger functions when the page loads uncomment the jQuery().ready
// lines and put your code in there 
// This file is loaded automatically for all CARE custom pages (website section 7)

//==============================================================================




// jQuery().ready(function(){
//
// Custom code here
//
// });

/*
$('a[href^="http://"]')
  .attr({
    target: "_blank", 
    title: "Opens in a new window"
  });
*/


jQuery().ready(function(){
	$('#opennewwindow1 a[@href^=""]')
		.attr("target", "_blank");
	$('#opennewwindow2 a[@href^=""]')
		.attr("target", "_blank");
});

$(document).ready(function() {
  $('.accordion-item .accordion-content').show();
});
