<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">$(window).load(function () {
    ReplaceCenterIcons();
});

function ReplaceCenterIcons() {
    //replacing ContentTypeImageMap images
    $('img[src="ct_ico_1.png"]').replaceWith('&lt;i class="fa fa-heart" data-toggle="tooltip" data-placement="bottom" title="Wellness Library"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_3.png"]').replaceWith('&lt;i class="fa fa-medkit" data-toggle="tooltip" data-placement="bottom" title="Patient Education"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_6.png"]').replaceWith('&lt;i class="fa fa-newspaper-o" data-toggle="tooltip" data-placement="bottom" title="Health News"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_22.png"]').replaceWith('&lt;i class="fa fa-pencil-square-o" data-toggle="tooltip" data-placement="bottom" title="Client Content"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_23.png"]').replaceWith('&lt;i class="fa fa-info-circle" data-toggle="tooltip" data-placement="bottom" title="About StayWell"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_30.png"]').replaceWith('&lt;i class="fa fa-apple" data-toggle="tooltip" data-placement="bottom" title="Healthy Recipes"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_31.png"]').replaceWith('&lt;i class="icon-online-resources" data-toggle="tooltip" data-placement="bottom" title="Online Resources"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_34.png"]').replaceWith('&lt;i class="icon-cancer-source" data-toggle="tooltip" data-placement="bottom" title="CancerSource"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_40.png"]').replaceWith('&lt;i class="fa fa-question-circle" data-toggle="tooltip" data-placement="bottom" title="Quizzes"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_41.png"]').replaceWith('&lt;i class="fa fa-calculator" data-toggle="tooltip" data-placement="bottom" title="Calculators"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_42.png"]').replaceWith('&lt;i class="icon-risk-assessments" data-toggle="tooltip" data-placement="bottom" title="Risk Assessments"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_43.png"]').replaceWith('&lt;i class="fa fa-calendar-check-0" data-toggle="tooltip" data-placement="bottom" title="Prevention Planner"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_82.png"]').replaceWith('&lt;i class="fa fa-file-text" data-toggle="tooltip" data-placement="bottom" title="Discharge Instructions"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_85.png"]').replaceWith('&lt;i class="icon-adult-dc" data-toggle="tooltip" data-placement="bottom" title="Adult Health Library"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_88.png"]').replaceWith('&lt;i class="fa fa-newspaper-o" data-toggle="tooltip" data-placement="bottom" title="Newsletters"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_90.png"]').replaceWith('&lt;i class="icon-pediatric-dc" data-toggle="tooltip" data-placement="bottom" title="Pediatric Health Library"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_92.png"]').replaceWith('&lt;i class="icon-tests-procedures" data-toggle="tooltip" data-placement="bottom" title="Tests and Procedures"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_121.png"]').replaceWith('&lt;i class="icon-drug-reference" data-toggle="tooltip" data-placement="bottom" title="Drug Reference"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_122.png"]').replaceWith('&lt;i class="fa fa-male" data-toggle="tooltip" data-placement="bottom" title="Adult Symptoms"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_123.png"]').replaceWith('&lt;i class="fa fa-child" data-toggle="tooltip" data-placement="bottom" title="Pediatric Symptoms"&gt;&lt;/i&gt;');
    $('img[src="ct_ico_138.png"]').replaceWith('&lt;i class="fa fa-play-circle" data-toggle="tooltip" data-placement="bottom" title="Videos"&gt;&lt;/i&gt;');
}

function ReplaceIcon(element) {
	var iconClass = "";
	var title = "";
	switch($(element).attr('src')){
		case "ct_ico_1.png":
			iconClass = "fa fa-heart";
			title = "Wellness Library";
			break;
		case "ct_ico_3.png":
			iconClass = "fa fa-medkit";
			title = "Patient Education";
			break;
		case "ct_ico_6.png":
			iconClass = "fa fa-newspaper-o";
			title = "Health News";
			break;
		case "ct_ico_22.png":
			iconClass = "fa fa-pencil-square-o";
			title = "Client Content";
			break;
		case "ct_ico_23.png":
			iconClass = "fa fa-info-circle";
			title = "About StayWell";
			break;
		case "ct_ico_30.png":
		    iconClass = "fa fa-cutlery";
			title = "Healthy Recipes";
			break;
		case "ct_ico_31.png":
			iconClass = "icon-online-resources";
			title = "Online Resources";
			break;
		case "ct_ico_34.png":
			iconClass = "icon-cancer-source";
			title = "CancerSource";
			break;
		case "ct_ico_40.png":
			iconClass = "fa fa-question-circle";
			title = "Quizzes";
			break;
		case "ct_ico_41.png":
			iconClass = "fa fa-calculator";
			title = "Calculators";
			break;
		case "ct_ico_42.png":
			iconClass = "icon-risk-assessments";
			title = "Risk Assessments";
			break;
		case "ct_ico_43.png":
			iconClass = "fa fa-calendar-check-o";
			title = "Prevention Planner";
			break;
		case "ct_ico_82.png":
			iconClass = "fa fa-file-text";
			title = "Discharge Instructions";
			break;
		case "ct_ico_85.png":
			iconClass = "icon-adult-dc";
			title = "Adult Health Library";
			break;
		case "ct_ico_88.png":
			iconClass = "fa fa-newspaper-o";
			title = "Newsletters";
			break;
		case "ct_ico_90.png":
			iconClass = "icon-pediatric-dc";
			title = "Pediatric Health Library";
			break;
		case "ct_ico_92.png":
			iconClass = "icon-tests-procedures";
			title = "Tests and Procedures";
			break;
		case "ct_ico_121.png":
			iconClass = "icon-drug-reference";
			title = "Drug Reference";
			break;
		case "ct_ico_122.png":
			iconClass = "fa fa-male";
			title = "Adult Symptoms";
			break;
		case "ct_ico_123.png":
			iconClass = "fa fa-child";
			title = "Pediatric Symptoms";
			break;
		case "ct_ico_138.png":
			iconClass = "fa fa-play-circle";
			title = "Videos";
			break;
	}
	$(element).replaceWith('&lt;i class="' + iconClass + '" data-toggle="tooltip" data-placement="bottom" title="' + title + '"&gt;&lt;/i&gt;')
}</pre></body></html>