jQuery(function(){
	 jQuery(".quicklinks").show();


if (jQuery('.content #compliance'))
{
		if (jQuery('.content #compliance #ehl').html() == 'hide') { jQuery('.footer .ehl').hide(); }
		if (jQuery('.content #compliance #ncua').html() == 'hide') { jQuery('.footer .ncua').hide(); }
		if (jQuery('.content #compliance #di').html() == 'hide') { jQuery('.footer .di').hide(); }
}


		jQuery(".enrollPopupOpen").click(function(){
				jQuery(".enrollPopup").show();
				return false;
		});
		jQuery("#enrollPopupClose").click(function(){
				jQuery(".enrollPopup").hide();
				return false;
		});
		
		// makes the popup show when ?enroll is added to the home page url
		if (location.href.indexOf("?enroll")!=-1)
		{
				jQuery(".enrollPopup").show();
		}

});