    isLoaded = false;
var ZInd = 5000;
var ie6 = false;
var subPage = false;
    
function set_top(id)
{
	if (!isLoaded) {
		return true;
	}
	ZInd = ZInd+100;
	document.getElementById(id).style.zIndex = ZInd
}

function openPopup(in_uri,in_name,in_height,in_width) {
		var WinWidth = in_width;
		var WinHeight = in_height;
		var theTop=(screen.height/2)-(WinHeight/2);
		var theLeft=(screen.width/2)-(WinWidth/2);
		var features='height=' + in_height + ',width=' + WinWidth +',top='+theTop+',left='+theLeft+',toolbar=0,Location=0,Directories=0,Status=0,menubar=0,Scrollbars=0,Resizable=1';
		popupWin = window.open(in_uri,in_name,features);
}

function openPrintPreviewPopup(in_uri,in_name,in_height,in_width) {
		var WinWidth = in_width;
		var WinHeight = in_height;
		var theTop=(screen.height/2)-(WinHeight/2);
		var theLeft=(screen.width/2)-(WinWidth/2);
		var features='height=' + in_height + ',width=' + WinWidth +',top='+theTop+',left='+theLeft+',toolbar=0,Location=0,Directories=0,Status=0,menubar=1,Scrollbars=1,Resizable=1';
		popupWin = window.open(in_uri,in_name,features);
}

function openWindow(in_uri) {
    newWindow = window.open(in_uri);
}

// Submits a form
function submitForm( in_flag )
{
    if( in_flag == "true" )
		if(document.forms[0].elements['GlobalSubmitType'])
			document.forms[0].elements['GlobalSubmitType'].value = "";
	document.forms[0].submit();
	return true;
}

// Submit the Global Search
function submitGlobalSearch()
{
	if(document.forms[0].elements['GlobalSearchFlag'])
		document.forms[0].elements['GlobalSearchFlag'].value = "";
	document.forms[0].elements["GlobalSubmitType"].value = "firelands_search_results";
	document.forms[0].elements["GlobalSearchFlag"].value = "true";
	submitForm("false");
}

mainnav = function() {
    if(typeof document.body.style.maxHeight == "undefined"){
        ie6 = true;
    }
	if (!isLoaded) {
		return true;
	}
	var lis = document.getElementById("navmenu-h").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
		    if(subPage && ie6){
		        var selects = document.getElementsByTagName("select");
		        for(var i = 0; i < selects.length; i++){
		            selects[i].style.display = 'none';
		        }
		    }
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		    if(subPage && ie6){
		        var selects = document.getElementsByTagName("select");
		        for(var i = 0; i < selects.length; i++){
		            selects[i].style.display = 'block';
		        }
		    }
		}
	}
}

if (window.attachEvent) window.attachEvent("onload", mainnav);

function detectLinkWith(in_id)
{
	var obj = document.getElementById(in_id);

     if (obj != null)
     {  
         var t = obj.innerHTML;
         var h = obj.offsetHeight;
         var str;

         if(t.indexOf('<IMG') == -1)
         {
              str = '<img';
         }
         else
         {
              str = '<IMG';
         }

         var abs_t = t.split(str);
         obj.innerHTML = abs_t[0];
         var abs_h = obj.offsetHeight;

         if( h != abs_h)
         {
              last_ind = abs_t[0].lastIndexOf(' ');
              var new_t_start = abs_t[0].substring(0,last_ind);
              var new_t_end = abs_t[0].substring(last_ind);
              
              obj.innerHTML = new_t_start +'<br />' +new_t_end + '<IMG'+ abs_t[1];
         }
         else
         {
              obj.innerHTML = t;
         }
     
     }
}

 function tranferDropDown(obj, urlLink) {
    var url = obj.options[obj.selectedIndex].value;
    if (url != '') {
        window.location = urlLink + '#' + obj.options[obj.selectedIndex].value;
    }
}


var main_nav_items = new Array("main_nav_who_we_are","main_nav_what_we_do","main_nav_while_you_are_with_us","main_nav_join_our_team","main_nav_giving_back","main_nav_school_of_nursing","main_nav_medical_education");
set_main_off = function() {
		if (!isLoaded) {
				return true;
			}
		for(var i = 0; i < main_nav_items.length; i++)
		{
			if(page != main_nav_items[i] && document.images[p] )
			{
				var p = main_nav_items[i];
                if( document.images[p] ) {
    				document.images[p].src = eval(p + "_off.src");
                }
			}
		}
		if(page != "")
		{
            if ( document.images[page] ) {
    			document.images[page].src = eval(page + "_on.src");
            }
		}
}
//if (window.attachEvent) window.attachEvent("onload", set_main_off);

function nav_level3(in_name,in_state,sep_name,id_top,id_bottom) {
	if (!isLoaded) {
		return true;
	}
	if (!isLoaded) {
		return true;
	}
	document.getElementById(in_name).src = eval(in_name + "_" + in_state + ".src");
	
	document.getElementById(id_top).src = eval(sep_name + "_" + in_state+".src");
	document.getElementById(id_bottom).src = eval(sep_name + "_" + in_state+ ".src");
}

function nav_image(in_object,in_name,in_state) {
	if (!isLoaded) {
		return true;
	}
	in_object.src = eval(in_name + "_" + in_state + ".src");
}

function nav_image_swap(in_name,in_state) {
	if (!isLoaded) {
		return true;
	}
	document.images[in_name].src = eval(in_name + "_" + in_state + ".src");
	if(in_state == "off" && in_name == page)
	{
		document.getElementById(page).src = eval(page + "_on.src");
		}
}

function sub_nav_image(in_object,in_name,in_state,sep_name,id_top,id_bottom) {
	if (!isLoaded) {
		return true;
	}
	in_object.src = eval(in_name + "_" + in_state + ".src");
	
	document.getElementById(id_top).src = eval(sep_name + "_" + in_state+".src");
	document.getElementById(id_bottom).src = eval(sep_name + "_" + in_state+ ".src");
}



function main_nav_image(in_name,next_img,in_state) {
	if (!isLoaded) {
		return true;
	}
	document.getElementById(in_name).src = eval(in_name + "_" + in_state + ".src");
	
	if(in_state == "roll")
	{
		if(next_img != page)
		{
            if( document.getElementById(next_img) ) {
    			document.getElementById(next_img).src = eval(next_img + ".src");
            }
		}
		else
		{
            if( document.getElementById(next_img) ) {
    			document.getElementById(next_img).src = eval(next_img + "_on_next.src");
            }
		}
	}
	else if(in_state == "off" || in_state == "on")
	{
        if( document.getElementById(next_img) ) {
    		document.getElementById(next_img).src = eval(next_img + "_off.src");
        }
		if(page != "")
            if( document.getElementById(page) ) {
        		document.getElementById(page).src = eval(page + "_on.src");
            }
	}
	
}

btn_submit_application_off = new Image();
btn_submit_application_off.src = js_root + "images/medical_education/btn_submit_application_off.gif";
btn_submit_application_on = new Image();
btn_submit_application_on.src = js_root + "images/medical_education/btn_submit_application_on.gif";

btn_clear_all_off = new Image();
btn_clear_all_off.src = js_root + "images/medical_education/btn_clear_all_off.gif";
btn_clear_all_on = new Image();
btn_clear_all_on.src = js_root + "images/medical_education/btn_clear_all_on.gif";


function showHomeTout(in_tout,state)
{
	if (!isLoaded) {
		return true;
	}
	if(state == "roll")
	{
		document.getElementById(in_tout+"_roll").style.display = 'block';
		document.getElementById(in_tout+"_off").style.display = 'none';
	}
	else if(state == "off")
	{
		document.getElementById(in_tout+"_roll").style.display = 'none';
		document.getElementById(in_tout+"_off").style.display = 'block';
	}
}



var who_items = new Array("sub_nav_why_firelands","sub_nav_news","sub_nav_phone_directory","sub_nav_community_offerings","sub_nav_support_groups","sub_nav_classes_and_events","sub_nav_quality_accreditation","sub_nav_cost_of_services","sub_nav_contact_us");
var what_items = new Array("sub_nav_behavioral_health", "sub_nav_cancer_center", "sub_nav_clinics", "sub_nav_corporate_health", "sub_nav_endocrine_diabetes", "sub_nav_dialysis_center", "sub_nav_digestive_health_center", "sub_nav_emergency_services", "sub_nav_firelands_club", "sub_nav_healthy_lifestyles", "sub_nav_heart_vascular_institute", "sub_nav_home_health_services", "sub_nav_imaging_services", "sub_nav_infusion_center", "sub_nav_laboratory_services", "sub_nav_maternity_pediatrics", "sub_nav_pain_relief", "sub_nav_pharmacy_services", "sub_nav_respiratory_services", "sub_nav_rehabilitation_therapies", "sub_nav_sleep_disorders", "sub_nav_spine_center_neurosciences", "sub_nav_women_health_and_wellness", "sub_nav_wound_care_center");
var while_items = new Array("sub_nav_patient_advocacy","sub_nav_patient_rights","sub_nav_adult_hospitalists","sub_nav_surgical_services","sub_nav_pediatric_hospitalists","sub_nav_social_services_care_management");
var join_items = new Array("sub_nav_working_at_firelands","sub_nav_currently_open_positions","sub_nav_our_benefits_package","sub_nav_new_hire_forms");
var giving_items = new Array("sub_nav_frmc_foundation","sub_nav_ways_to_give","sub_nav_donation","sub_nav_donars","sub_nav_gb_events","sub_nav_volunteering","sub_nav_auxiliary");
var school_items = new Array("sub_nav_about_us","sub_nav_prospective_students","sub_nav_current_students","sub_nav_alumni_updates","sub_nav_contact_us_school_of_nursing");
var medical_items = new Array("sub_nav_programs","sub_nav_rotations","sub_nav_staff","sub_nav_quickfacts","sub_nav_location","sub_nav_trainees","sub_nav_testimonials","sub_nav_alumni_medical_edication","sub_nav_events","sub_nav_application");

function set_sub_off(items,sep_id,separator,count)
{

	if (!isLoaded) {
		return true;
	}
	
	for(var i = 0; i < items.length; i++)
		{
			var p = items[i];
            if ( document.getElementById(p) ) {
			document.getElementById(p).src = eval(p + "_off.src");
            }
		}

	for(var i = 1; i <= count; i++)
		{
			var p = items[i];
            if( document.getElementById(sep_id+"_"+i) ) {
			document.getElementById(sep_id+"_"+i).src = eval(separator + "_off.src");
            }
		}	
}


btn_go_off = new Image;
btn_go_roll = new Image;
btn_go_off.src = js_root + "images/btn_go_off.gif";
btn_go_roll.src = js_root + "images/btn_go_roll.gif";


btn_submit_off = new Image;
btn_submit_roll = new Image;
btn_submit_off.src = js_root + "images/btn_submit_off.gif";
btn_submit_roll.src = js_root + "images/btn_submit_roll.gif";

//--------- Who We Are ----------//
main_nav_who_we_are_off = new Image;
main_nav_who_we_are_roll = new Image;
main_nav_who_we_are_on = new Image;
main_nav_who_we_are_on.src = js_root + "images/main_nav_who_we_are_on.gif";
main_nav_who_we_are_off.src = js_root + "images/main_nav_who_we_are_off.gif";
main_nav_who_we_are_roll.src = js_root + "images/main_nav_who_we_are_roll.gif";


separator_who_we_are_off = new Image;
separator_who_we_are_roll = new Image;
separator_who_we_are_off.src = js_root + "images/separator_who_we_are_off.gif";
separator_who_we_are_roll.src = js_root + "images/separator_who_we_are_roll.gif";

sub_nav_why_firelands_off = new Image;
sub_nav_why_firelands_roll = new Image;
sub_nav_why_firelands_off.src = js_root + "images/sub_nav_why_firelands_off.gif";
sub_nav_why_firelands_roll.src = js_root + "images/sub_nav_why_firelands_roll.gif";


sub_nav_quick_facts_off = new Image;
sub_nav_quick_facts_roll = new Image;
sub_nav_quick_facts_off.src = js_root + "images/sub_nav_quick_facts_off.gif";
sub_nav_quick_facts_roll.src = js_root + "images/sub_nav_quick_facts_roll.gif";

sub_nav_visitor_info_maps_off = new Image;
sub_nav_visitor_info_maps_roll = new Image;
sub_nav_visitor_info_maps_off.src = js_root + "images/sub_nav_visitor_info_maps_off.gif";
sub_nav_visitor_info_maps_roll.src = js_root + "images/sub_nav_visitor_info_maps_roll.gif";

sub_nav_quality_accreditation_off = new Image;
sub_nav_quality_accreditation_roll = new Image;
sub_nav_quality_accreditation_off.src = js_root + "images/sub_nav_quality_accreditation_off.gif";
sub_nav_quality_accreditation_roll.src = js_root + "images/sub_nav_quality_accreditation_roll.gif";

sub_nav_news_annoucements_off = new Image;
sub_nav_news_annoucements_roll = new Image;
sub_nav_news_annoucements_off.src = js_root + "images/sub_nav_news_annoucements_off.gif";
sub_nav_news_annoucements_roll.src = js_root + "images/sub_nav_news_annoucements_roll.gif";

sub_nav_great_experiences_off = new Image;
sub_nav_great_experiences_roll = new Image;
sub_nav_great_experiences_off.src = js_root + "images/sub_nav_great_experiences_off.gif";
sub_nav_great_experiences_roll.src = js_root + "images/sub_nav_great_experiences_roll.gif";

sub_nav_meet_our_executive_staff_off = new Image;
sub_nav_meet_our_executive_staff_roll = new Image;
sub_nav_meet_our_executive_staff_off.src = js_root + "images/sub_nav_meet_our_executive_staff_off.gif";
sub_nav_meet_our_executive_staff_roll.src = js_root + "images/sub_nav_meet_our_executive_staff_roll.gif";

sub_nav_cost_of_services_off = new Image;
sub_nav_cost_of_services_roll = new Image;
sub_nav_cost_of_services_off.src = js_root + "images/sub_nav_cost_of_services_off.gif";
sub_nav_cost_of_services_roll.src = js_root + "images/sub_nav_cost_of_services_roll.gif";

sub_nav_our_history_off = new Image;
sub_nav_our_history_roll = new Image;
sub_nav_our_history_off.src = js_root + "images/sub_nav_our_history_off.gif";
sub_nav_our_history_roll.src = js_root + "images/sub_nav_our_history_roll.gif";

sub_nav_contact_us_off = new Image;
sub_nav_contact_us_roll = new Image;
sub_nav_contact_us_off.src = js_root + "images/sub_nav_contact_us_off.gif";
sub_nav_contact_us_roll.src = js_root + "images/sub_nav_contact_us_roll.gif";


//------- Core Services --------//
main_nav_what_we_do = new Image;
main_nav_what_we_do_off = new Image;
main_nav_what_we_do_roll = new Image;
main_nav_what_we_do_on = new Image;
main_nav_what_we_do_on_next = new Image;
main_nav_what_we_do_on_next.src = js_root + "images/main_nav_what_we_do_on_next.gif";
main_nav_what_we_do_on.src = js_root + "images/main_nav_what_we_do_on.gif";
main_nav_what_we_do.src = js_root + "images/main_nav_what_we_do.gif";
main_nav_what_we_do_off.src = js_root + "images/main_nav_what_we_do_off.gif";
main_nav_what_we_do_roll.src = js_root + "images/main_nav_what_we_do_roll.gif";


separator_core_services_off = new Image;
separator_core_services_roll = new Image;
separator_core_services_off.src = js_root + "images/separator_core_services_off.gif";
separator_core_services_roll.src = js_root + "images/separator_core_services_roll.gif";

sub_nav_behavioral_health_off = new Image;
sub_nav_behavioral_health_roll = new Image;
sub_nav_behavioral_health_off.src = js_root + "images/sub_nav_behavioral_health_off.gif";
sub_nav_behavioral_health_roll.src = js_root + "images/sub_nav_behavioral_health_roll.gif";

sub_nav_cancer_center_off = new Image;
sub_nav_cancer_center_roll = new Image;
sub_nav_cancer_center_off.src = js_root + "images/sub_nav_cancer_center_off.gif";
sub_nav_cancer_center_roll.src = js_root + "images/sub_nav_cancer_center_roll.gif";

sub_nav_clinics_off = new Image;
sub_nav_clinics_roll = new Image;
sub_nav_clinics_off.src = js_root + "images/sub_nav_clinics_off.gif";
sub_nav_clinics_roll.src = js_root + "images/sub_nav_clinics_roll.gif";

sub_nav_corporate_health_off = new Image;
sub_nav_corporate_health_roll = new Image;
sub_nav_corporate_health_off.src = js_root + "images/sub_nav_corporate_health_off.gif";
sub_nav_corporate_health_roll.src = js_root + "images/sub_nav_corporate_health_roll.gif";

sub_nav_endocrine_diabetes_off = new Image;
sub_nav_endocrine_diabetes_roll = new Image;
sub_nav_endocrine_diabetes_off.src = js_root + "images/sub_nav_endocrine_diabetes_off.gif";
sub_nav_endocrine_diabetes_roll.src = js_root + "images/sub_nav_endocrine_diabetes_roll.gif";

sub_nav_dialysis_center_off = new Image;
sub_nav_dialysis_center_roll = new Image;
sub_nav_dialysis_center_off.src = js_root + "images/sub_nav_dialysis_center_off.gif";
sub_nav_dialysis_center_roll.src = js_root + "images/sub_nav_dialysis_center_roll.gif";

sub_nav_digestive_health_center_off = new Image;
sub_nav_digestive_health_center_roll = new Image;
sub_nav_digestive_health_center_off.src = js_root + "images/sub_nav_digestive_health_center_off.gif";
sub_nav_digestive_health_center_roll.src = js_root + "images/sub_nav_digestive_health_center_roll.gif";

sub_nav_emergency_services_off = new Image;
sub_nav_emergency_services_roll = new Image;
sub_nav_emergency_services_off.src = js_root + "images/sub_nav_emergency_services_off.gif";
sub_nav_emergency_services_roll.src = js_root + "images/sub_nav_emergency_services_roll.gif";

sub_nav_firelands_club_off = new Image;
sub_nav_firelands_club_roll = new Image;
sub_nav_firelands_club_off.src = js_root + "images/sub_nav_firelands_club_off.gif";
sub_nav_firelands_club_roll.src = js_root + "images/sub_nav_firelands_club_roll.gif";

sub_nav_healthy_lifestyles_off = new Image;
sub_nav_healthy_lifestyles_roll = new Image;
sub_nav_healthy_lifestyles_off.src = js_root + "images/sub_nav_healthy_lifestyles_off.gif";
sub_nav_healthy_lifestyles_roll.src = js_root + "images/sub_nav_healthy_lifestyles_roll.gif";

sub_nav_heart_vascular_institute_off = new Image;
sub_nav_heart_vascular_institute_roll = new Image;
sub_nav_heart_vascular_institute_off.src = js_root + "images/sub_nav_heart_vascular_institute_off.gif";
sub_nav_heart_vascular_institute_roll.src = js_root + "images/sub_nav_heart_vascular_institute_roll.gif";

sub_nav_home_health_services_off = new Image;
sub_nav_home_health_services_roll = new Image;
sub_nav_home_health_services_off.src = js_root + "images/sub_nav_home_health_services_off.gif";
sub_nav_home_health_services_roll.src = js_root + "images/sub_nav_home_health_services_roll.gif";

sub_nav_imaging_services_off = new Image;
sub_nav_imaging_services_roll = new Image;
sub_nav_imaging_services_off.src = js_root + "images/sub_nav_imaging_services_off.gif";
sub_nav_imaging_services_roll.src = js_root + "images/sub_nav_imaging_services_roll.gif";

sub_nav_maternity_pediatrics_off = new Image;
sub_nav_maternity_pediatrics_roll = new Image;
sub_nav_maternity_pediatrics_off.src = js_root + "images/sub_nav_maternity_pediatrics_off.gif";
sub_nav_maternity_pediatrics_roll.src = js_root + "images/sub_nav_maternity_pediatrics_roll.gif";

sub_nav_spine_center_neurosciences_off = new Image;
sub_nav_spine_center_neurosciences_roll = new Image;
sub_nav_spine_center_neurosciences_off.src = js_root + "images/sub_nav_spine_center_neurosciences_off.gif";
sub_nav_spine_center_neurosciences_roll.src = js_root + "images/sub_nav_spine_center_neurosciences_roll.gif";

sub_nav_physical_medicine_rehab_off = new Image;
sub_nav_physical_medicine_rehab_roll = new Image;
sub_nav_physical_medicine_rehab_off.src = js_root + "images/sub_nav_physical_medicine_rehab_off.gif";
sub_nav_physical_medicine_rehab_roll.src = js_root + "images/sub_nav_physical_medicine_rehab_roll.gif";

sub_nav_respiratory_services_off = new Image;
sub_nav_respiratory_services_roll = new Image;
sub_nav_respiratory_services_off.src = js_root + "images/sub_nav_respiratory_services_off.gif";
sub_nav_respiratory_services_roll.src = js_root + "images/sub_nav_respiratory_services_roll.gif";

sub_nav_sleep_disorders_off = new Image;
sub_nav_sleep_disorders_roll = new Image;
sub_nav_sleep_disorders_off.src = js_root + "images/sub_nav_sleep_disorders_off.gif";
sub_nav_sleep_disorders_roll.src = js_root + "images/sub_nav_sleep_disorders_roll.gif";

sub_nav_surgical_services_off = new Image;
sub_nav_surgical_services_roll = new Image;
sub_nav_surgical_services_off.src = js_root + "images/sub_nav_surgical_services_off.gif";
sub_nav_surgical_services_roll.src = js_root + "images/sub_nav_surgical_services_roll.gif";

sub_nav_wellness_resources_off = new Image;
sub_nav_wellness_resources_roll = new Image;
sub_nav_wellness_resources_off.src = js_root + "images/sub_nav_wellness_resources_off.gif";
sub_nav_wellness_resources_roll.src = js_root + "images/sub_nav_wellness_resources_roll.gif";

sub_nav_women_imaging_center_off = new Image;
sub_nav_women_imaging_center_roll = new Image;
sub_nav_women_imaging_center_off.src = js_root + "images/sub_nav_women_imaging_center_off.gif";
sub_nav_women_imaging_center_roll.src = js_root + "images/sub_nav_women_imaging_center_roll.gif";




//---------------------- While You Are With Us -------//

main_nav_while_you_are_with_us = new Image;
main_nav_while_you_are_with_us_off = new Image;
main_nav_while_you_are_with_us_roll = new Image;
main_nav_while_you_are_with_us_on = new Image;
main_nav_while_you_are_with_us_on_next = new Image;
main_nav_while_you_are_with_us_on_next.src = js_root + "images/main_nav_while_you_are_with_us_on_next.gif";
main_nav_while_you_are_with_us_on.src = js_root + "images/main_nav_while_you_are_with_us_on.gif";
main_nav_while_you_are_with_us.src = js_root + "images/main_nav_while_you_are_with_us.gif";
main_nav_while_you_are_with_us_off.src = js_root + "images/main_nav_while_you_are_with_us_off.gif";
main_nav_while_you_are_with_us_roll.src = js_root + "images/main_nav_while_you_are_with_us_roll.gif";


separator_while_you_are_with_us_off = new Image;
separator_while_you_are_with_us_roll = new Image;
separator_while_you_are_with_us_off.src = js_root + "images/separator_while_you_are_with_us_off.gif";
separator_while_you_are_with_us_roll.src = js_root + "images/separator_while_you_are_with_us_roll.gif";

sub_nav_patient_advocacy_off = new Image;
sub_nav_patient_advocacy_roll = new Image;
sub_nav_patient_advocacy_off.src = js_root + "images/sub_nav_patient_advocacy_off.gif";
sub_nav_patient_advocacy_roll.src = js_root + "images/sub_nav_patient_advocacy_roll.gif";

sub_nav_social_services_care_management_off = new Image;
sub_nav_social_services_care_management_roll = new Image;
sub_nav_social_services_care_management_off.src = js_root + "images/sub_nav_social_services_care_management_off.gif";
sub_nav_social_services_care_management_roll.src = js_root + "images/sub_nav_social_services_care_management_roll.gif";

//-------------------- Join Our Team --------------------//
main_nav_join_our_team = new Image
main_nav_join_our_team_off = new Image;
main_nav_join_our_team_roll = new Image;
main_nav_join_our_team_on_next = new Image;
main_nav_join_our_team_on = new Image;
main_nav_join_our_team_on.src = js_root + "images/main_nav_join_our_team_on.gif";
main_nav_join_our_team_on_next.src = js_root + "images/main_nav_join_our_team_on_next.gif";
main_nav_join_our_team.src = js_root + "images/main_nav_join_our_team.gif";
main_nav_join_our_team_off.src = js_root + "images/main_nav_join_our_team_off.gif";
main_nav_join_our_team_roll.src = js_root + "images/main_nav_join_our_team_roll.gif";


separator_join_our_team_off = new Image;
separator_join_our_team_roll = new Image;
separator_join_our_team_off.src = js_root + "images/separator_join_our_team_off.gif";
separator_join_our_team_roll.src = js_root + "images/separator_join_our_team_roll.gif";

sub_nav_working_at_firelands_off = new Image;
sub_nav_working_at_firelands_roll = new Image;
sub_nav_working_at_firelands_off.src = js_root + "images/sub_nav_working_at_firelands_off.gif";
sub_nav_working_at_firelands_roll.src = js_root + "images/sub_nav_working_at_firelands_roll.gif";

sub_nav_currently_open_positions_off = new Image;
sub_nav_currently_open_positions_roll = new Image;
sub_nav_currently_open_positions_off.src = js_root + "images/sub_nav_currently_open_positions_off.gif";
sub_nav_currently_open_positions_roll.src = js_root + "images/sub_nav_currently_open_positions_roll.gif";

sub_nav_our_benefits_package_off = new Image;
sub_nav_our_benefits_package_roll = new Image;
sub_nav_our_benefits_package_off.src = js_root + "images/sub_nav_our_benefits_package_off.gif";
sub_nav_our_benefits_package_roll.src = js_root + "images/sub_nav_our_benefits_package_roll.gif";

sub_nav_our_community_off = new Image;
sub_nav_our_community_roll = new Image;
sub_nav_our_community_off.src = js_root + "images/sub_nav_our_community_off.gif";
sub_nav_our_community_roll.src = js_root + "images/sub_nav_our_community_roll.gif";

//-------------------- Giving Back --------------------//
main_nav_giving_back = new Image
main_nav_giving_back_off = new Image;
main_nav_giving_back_roll = new Image;
main_nav_giving_back_on_next = new Image;
main_nav_giving_back_on = new Image;
main_nav_giving_back_on.src = js_root + "images/main_nav_giving_back_on.gif";
main_nav_giving_back_on_next.src = js_root + "images/main_nav_giving_back_on_next.gif";
main_nav_giving_back.src = js_root + "images/main_nav_giving_back.gif";
main_nav_giving_back_off.src = js_root + "images/main_nav_giving_back_off.gif";
main_nav_giving_back_roll.src = js_root + "images/main_nav_giving_back_roll.gif";


separator_giving_back_off = new Image;
separator_giving_back_roll = new Image;
separator_giving_back_off.src = js_root + "images/separator_giving_back_off.gif";
separator_giving_back_roll.src = js_root + "images/separator_giving_back_roll.gif";

sub_nav_volunteering_at_firelands_off = new Image;
sub_nav_volunteering_at_firelands_roll = new Image;
sub_nav_volunteering_at_firelands_off.src = js_root + "images/sub_nav_volunteering_at_firelands_off.gif";
sub_nav_volunteering_at_firelands_roll.src = js_root + "images/sub_nav_volunteering_at_firelands_roll.gif";

sub_nav_the_firelands_auxiliary_off = new Image;
sub_nav_the_firelands_auxiliary_roll = new Image;
sub_nav_the_firelands_auxiliary_off.src = js_root + "images/sub_nav_the_firelands_auxiliary_off.gif";
sub_nav_the_firelands_auxiliary_roll.src = js_root + "images/sub_nav_the_firelands_auxiliary_roll.gif";

sub_nav_frmc_foundation_off = new Image;
sub_nav_frmc_foundation_roll = new Image;
sub_nav_frmc_foundation_off.src = js_root + "images/sub_nav_frmc_foundation_off.gif";
sub_nav_frmc_foundation_roll.src = js_root + "images/sub_nav_frmc_foundation_roll.gif";

sub_nav_information_for_donors_off = new Image;
sub_nav_information_for_donors_roll = new Image;
sub_nav_information_for_donors_off.src = js_root + "images/sub_nav_information_for_donors_off.gif";
sub_nav_information_for_donors_roll.src = js_root + "images/sub_nav_information_for_donors_roll.gif";

//-------------------- School of Nursing --------------------//
main_nav_school_of_nursing = new Image
main_nav_school_of_nursing_off = new Image;
main_nav_school_of_nursing_roll = new Image;
main_nav_school_of_nursing_on = new Image;
main_nav_school_of_nursing_on_next = new Image;
main_nav_school_of_nursing_on_next.src = js_root + "images/main_nav_school_of_nursing_on_next.gif";
main_nav_school_of_nursing.src = js_root + "images/main_nav_school_of_nursing.gif";
main_nav_school_of_nursing_off.src = js_root + "images/main_nav_school_of_nursing_off.gif";
main_nav_school_of_nursing_roll.src = js_root + "images/main_nav_school_of_nursing_roll.gif";
main_nav_school_of_nursing_on.src = js_root + "images/main_nav_school_of_nursing_on.gif";


separator_school_of_nursing_off = new Image;
separator_school_of_nursing_roll = new Image;
separator_school_of_nursing_off.src = js_root + "images/separator_school_of_nursing_off.gif";
separator_school_of_nursing_roll.src = js_root + "images/separator_school_of_nursing_roll.gif";

sub_nav_about_us_off = new Image;
sub_nav_about_us_roll = new Image;
sub_nav_about_us_off.src = js_root + "images/sub_nav_about_us_off.gif";
sub_nav_about_us_roll.src = js_root + "images/sub_nav_about_us_roll.gif";

sub_nav_current_students_off = new Image;
sub_nav_current_students_roll = new Image;
sub_nav_current_students_off.src = js_root + "images/sub_nav_current_students_off.gif";
sub_nav_current_students_roll.src = js_root + "images/sub_nav_current_students_roll.gif";

sub_nav_prospective_students_off = new Image;
sub_nav_prospective_students_roll = new Image;
sub_nav_prospective_students_off.src = js_root + "images/sub_nav_prospective_students_off.gif";
sub_nav_prospective_students_roll.src = js_root + "images/sub_nav_prospective_students_roll.gif";

sub_nav_online_application_off = new Image;
sub_nav_online_application_roll = new Image;
sub_nav_online_application_off.src = js_root + "images/sub_nav_online_application_off.gif";
sub_nav_online_application_roll.src = js_root + "images/sub_nav_online_application_roll.gif";

sub_nav_admissions_requirements_off = new Image;
sub_nav_admissions_requirements_roll = new Image;
sub_nav_admissions_requirements_off.src = js_root + "images/sub_nav_admissions_requirements_off.gif";
sub_nav_admissions_requirements_roll.src = js_root + "images/sub_nav_admissions_requirements_roll.gif";

sub_nav_financial_aid_off = new Image;
sub_nav_financial_aid_roll = new Image;
sub_nav_financial_aid_off.src = js_root + "images/sub_nav_financial_aid_off.gif";
sub_nav_financial_aid_roll.src = js_root + "images/sub_nav_financial_aid_roll.gif";

sub_nav_view_awards_off = new Image;
sub_nav_view_awards_roll = new Image;
sub_nav_view_awards_off.src = js_root + "images/sub_nav_view_awards_off.gif";
sub_nav_view_awards_roll.src = js_root + "images/sub_nav_view_awards_roll.gif";

sub_nav_tuition_costs_off = new Image;
sub_nav_tuition_costs_roll = new Image;
sub_nav_tuition_costs_off.src = js_root + "images/sub_nav_tuition_costs_off.gif";
sub_nav_tuition_costs_roll.src = js_root + "images/sub_nav_tuition_costs_roll.gif";

sub_nav_alumni_off = new Image;
sub_nav_alumni_roll = new Image;
sub_nav_alumni_off.src = js_root + "images/sub_nav_alumni_off.gif";
sub_nav_alumni_roll.src = js_root + "images/sub_nav_alumni_roll.gif";

sub_nav_academic_calendar_off = new Image;
sub_nav_academic_calendar_roll = new Image;
sub_nav_academic_calendar_off.src = js_root + "images/sub_nav_academic_calendar_off.gif";
sub_nav_academic_calendar_roll.src = js_root + "images/sub_nav_academic_calendar_roll.gif";

//-------------------- Medical Education --------------------//
main_nav_medical_education = new Image
main_nav_medical_education_off = new Image;
main_nav_medical_education_roll = new Image;
main_nav_medical_education_on = new Image;
main_nav_medical_education_on_next = new Image;
main_nav_medical_education_on_next.src = js_root + "images/main_nav_medical_education_on_next.gif";
main_nav_medical_education_on.src = js_root + "images/main_nav_medical_education_on.gif";
main_nav_medical_education.src = js_root + "images/main_nav_medical_education.gif";
main_nav_medical_education_off.src = js_root + "images/main_nav_medical_education_off.gif";
main_nav_medical_education_roll.src = js_root + "images/main_nav_medical_education_roll.gif";


separator_medical_education_off = new Image;
separator_medical_education_roll = new Image;
separator_medical_education_off.src = js_root + "images/separator_medical_education_off.gif";
separator_medical_education_roll.src = js_root + "images/separator_medical_education_roll.gif";

sub_nav_programs_off = new Image;
sub_nav_programs_roll = new Image;
sub_nav_programs_off.src = js_root + "images/sub_nav_programs_off.gif";

//--------- Who We Are ----------//
main_nav_who_we_are_off = new Image;
main_nav_who_we_are_roll = new Image;
main_nav_who_we_are_on = new Image;
main_nav_who_we_are_on.src = js_root + "images//main_nav_who_we_are_on.gif";
main_nav_who_we_are_off.src = js_root + "images//main_nav_who_we_are_off.gif";
main_nav_who_we_are_roll.src = js_root + "images//main_nav_who_we_are_roll.gif";


separator_who_we_are_off = new Image;
separator_who_we_are_roll = new Image;
separator_who_we_are_off.src = js_root + "images/separator_who_we_are_off.gif";
separator_who_we_are_roll.src = js_root + "images/separator_who_we_are_roll.gif";

sub_nav_why_firelands_off = new Image;
sub_nav_why_firelands_roll = new Image;
sub_nav_why_firelands_off.src = js_root + "images/sub_nav_why_firelands_off.gif";
sub_nav_why_firelands_roll.src = js_root + "images/sub_nav_why_firelands_roll.gif";


sub_nav_quick_facts_off = new Image;
sub_nav_quick_facts_roll = new Image;
sub_nav_quick_facts_off.src = js_root + "images/sub_nav_quick_facts_off.gif";
sub_nav_quick_facts_roll.src = js_root + "images/sub_nav_quick_facts_roll.gif";

sub_nav_news_off = new Image;
sub_nav_news_roll = new Image;
sub_nav_news_off.src = js_root + "images/sub_nav_news_off.gif";
sub_nav_news_roll.src = js_root + "images/sub_nav_news_roll.gif";

sub_nav_department_directory_off = new Image;
sub_nav_department_directory_roll = new Image;
sub_nav_department_directory_off.src = js_root + "images/sub_nav_department_directory_off.gif";
sub_nav_department_directory_roll.src = js_root + "images/sub_nav_department_directory_roll.gif";

sub_nav_phone_directory_off = new Image;
sub_nav_phone_directory_roll = new Image;
sub_nav_phone_directory_off.src = js_root + "images/sub_nav_phone_directory_off.gif";
sub_nav_phone_directory_roll.src = js_root + "images/sub_nav_phone_directory_roll.gif";

sub_nav_community_offerings_off = new Image;
sub_nav_community_offerings_roll = new Image;
sub_nav_community_offerings_off.src = js_root + "images/sub_nav_community_offerings_off.gif";
sub_nav_community_offerings_roll.src = js_root + "images/sub_nav_community_offerings_roll.gif";

sub_nav_support_groups_off = new Image;
sub_nav_support_groups_roll = new Image;
sub_nav_support_groups_off.src = js_root + "images/sub_nav_support_groups_off.gif";
sub_nav_support_groups_roll.src = js_root + "images/sub_nav_support_groups_roll.gif";

sub_nav_classes_and_events_off = new Image;
sub_nav_classes_and_events_roll = new Image;
sub_nav_classes_and_events_off.src = js_root + "images/sub_nav_classes_and_events_off.gif";
sub_nav_classes_and_events_roll.src = js_root + "images/sub_nav_classes_and_events_roll.gif";

sub_nav_quality_accreditation_off = new Image;
sub_nav_quality_accreditation_roll = new Image;
sub_nav_quality_accreditation_off.src = js_root + "images/sub_nav_quality_accreditation_off.gif";
sub_nav_quality_accreditation_roll.src = js_root + "images/sub_nav_quality_accreditation_roll.gif";

sub_nav_cost_of_services_off = new Image;
sub_nav_cost_of_services_roll = new Image;
sub_nav_cost_of_services_off.src = js_root + "images/sub_nav_cost_of_services_off.gif";
sub_nav_cost_of_services_roll.src = js_root + "images/sub_nav_cost_of_services_roll.gif";

sub_nav_history_of_firelands_regional_medical_center_off = new Image;
sub_nav_history_of_firelands_regional_medical_center_roll = new Image;
sub_nav_history_of_firelands_regional_medical_center_off.src = js_root + "images/sub_nav_history_of_firelands_regional_medical_center_off.gif";
sub_nav_history_of_firelands_regional_medical_center_roll.src = js_root + "images/sub_nav_history_of_firelands_regional_medical_center_roll.gif";

sub_nav_contact_us_off = new Image;
sub_nav_contact_us_roll = new Image;
sub_nav_contact_us_off.src = js_root + "images/sub_nav_contact_us_off.gif";
sub_nav_contact_us_roll.src = js_root + "images/sub_nav_contact_us_roll.gif";


sub_nav_visitor_info_maps_off = new Image;
sub_nav_visitor_info_maps_roll = new Image;
sub_nav_visitor_info_maps_off.src = js_root + "images/sub_nav_visitor_info_maps_off.gif";
sub_nav_visitor_info_maps_roll.src = js_root + "images/sub_nav_visitor_info_maps_roll.gif";

sub_nav_frequently_asked_questions_off = new Image;
sub_nav_frequently_asked_questions_roll = new Image;
sub_nav_frequently_asked_questions_off.src = js_root + "images/sub_nav_frequently_asked_questions_off.gif";
sub_nav_frequently_asked_questions_roll.src = js_root + "images/sub_nav_frequently_asked_questions_roll.gif";

//------- What We Do --------//
main_nav_what_we_do = new Image;
main_nav_what_we_do_off = new Image;
main_nav_what_we_do_roll = new Image;
main_nav_what_we_do.src = js_root + "images//main_nav_what_we_do.gif";
main_nav_what_we_do_off.src = js_root + "images//main_nav_what_we_do_off.gif";
main_nav_what_we_do_roll.src = js_root + "images//main_nav_what_we_do_roll.gif";

separator_core_services_off = new Image;
separator_core_services_roll = new Image;
separator_core_services_off.src = js_root + "images/separator_core_services_off.gif";
separator_core_services_roll.src = js_root + "images/separator_core_services_roll.gif";

sub_nav_behavioral_health_off = new Image;
sub_nav_behavioral_health_roll = new Image;
sub_nav_behavioral_health_off.src = js_root + "images/sub_nav_behavioral_health_off.gif";
sub_nav_behavioral_health_roll.src = js_root + "images/sub_nav_behavioral_health_roll.gif";

sub_nav_cancer_center_off = new Image;
sub_nav_cancer_center_roll = new Image;
sub_nav_cancer_center_off.src = js_root + "images/sub_nav_cancer_center_off.gif";
sub_nav_cancer_center_roll.src = js_root + "images/sub_nav_cancer_center_roll.gif";

sub_nav_clinics_off = new Image;
sub_nav_clinics_roll = new Image;
sub_nav_clinics_off.src = js_root + "images/sub_nav_clinics_off.gif";
sub_nav_clinics_roll.src = js_root + "images/sub_nav_clinics_roll.gif";

sub_nav_corporate_health_off = new Image;
sub_nav_corporate_health_roll = new Image;
sub_nav_corporate_health_off.src = js_root + "images/sub_nav_corporate_health_off.gif";
sub_nav_corporate_health_roll.src = js_root + "images/sub_nav_corporate_health_roll.gif";

sub_nav_endocrine_diabetes_off = new Image;
sub_nav_endocrine_diabetes_roll = new Image;
sub_nav_endocrine_diabetes_off.src = js_root + "images/sub_nav_endocrine_diabetes_off.gif";
sub_nav_endocrine_diabetes_roll.src = js_root + "images/sub_nav_endocrine_diabetes_roll.gif";

sub_nav_dialysis_center_off = new Image;
sub_nav_dialysis_center_roll = new Image;
sub_nav_dialysis_center_off.src = js_root + "images/sub_nav_dialysis_center_off.gif";
sub_nav_dialysis_center_roll.src = js_root + "images/sub_nav_dialysis_center_roll.gif";

sub_nav_digestive_health_center_off = new Image;
sub_nav_digestive_health_center_roll = new Image;
sub_nav_digestive_health_center_off.src = js_root + "images/sub_nav_digestive_health_center_off.gif";
sub_nav_digestive_health_center_roll.src = js_root + "images/sub_nav_digestive_health_center_roll.gif";

sub_nav_emergency_services_off = new Image;
sub_nav_emergency_services_roll = new Image;
sub_nav_emergency_services_off.src = js_root + "images/sub_nav_emergency_services_off.gif";
sub_nav_emergency_services_roll.src = js_root + "images/sub_nav_emergency_services_roll.gif";

sub_nav_firelands_club_off = new Image;
sub_nav_firelands_club_roll = new Image;
sub_nav_firelands_club_off.src = js_root + "images/sub_nav_firelands_club_off.gif";
sub_nav_firelands_club_roll.src = js_root + "images/sub_nav_firelands_club_roll.gif";

sub_nav_healthy_lifestyles_off = new Image;
sub_nav_healthy_lifestyles_roll = new Image;
sub_nav_healthy_lifestyles_off.src = js_root + "images/sub_nav_healthy_lifestyles_off.gif";
sub_nav_healthy_lifestyles_roll.src = js_root + "images/sub_nav_healthy_lifestyles_roll.gif";

sub_nav_heart_vascular_institute_off = new Image;
sub_nav_heart_vascular_institute_roll = new Image;
sub_nav_heart_vascular_institute_off.src = js_root + "images/sub_nav_heart_vascular_institute_off.gif";
sub_nav_heart_vascular_institute_roll.src = js_root + "images/sub_nav_heart_vascular_institute_roll.gif";

sub_nav_home_health_services_off = new Image;
sub_nav_home_health_services_roll = new Image;
sub_nav_home_health_services_off.src = js_root + "images/sub_nav_home_health_services_off.gif";
sub_nav_home_health_services_roll.src = js_root + "images/sub_nav_home_health_services_roll.gif";

sub_nav_imaging_services_off = new Image;
sub_nav_imaging_services_roll = new Image;
sub_nav_imaging_services_off.src = js_root + "images/sub_nav_imaging_services_off.gif";
sub_nav_imaging_services_roll.src = js_root + "images/sub_nav_imaging_services_roll.gif";

sub_nav_infusion_center_off = new Image;
sub_nav_infusion_center_roll = new Image;
sub_nav_infusion_center_off.src = js_root + "images/sub_nav_infusion_center_off.gif";
sub_nav_infusion_center_roll.src = js_root + "images/sub_nav_infusion_center_roll.gif";

sub_nav_maternity_pediatrics_off = new Image;
sub_nav_maternity_pediatrics_roll = new Image;
sub_nav_maternity_pediatrics_off.src = js_root + "images/sub_nav_maternity_pediatrics_off.gif";
sub_nav_maternity_pediatrics_roll.src = js_root + "images/sub_nav_maternity_pediatrics_roll.gif";

sub_nav_spine_center_neurosciences_off = new Image;
sub_nav_spine_center_neurosciences_roll = new Image;
sub_nav_spine_center_neurosciences_off.src = js_root + "images/sub_nav_spine_center_neurosciences_off.gif";
sub_nav_spine_center_neurosciences_roll.src = js_root + "images/sub_nav_spine_center_neurosciences_roll.gif";

sub_nav_pain_relief_off = new Image;
sub_nav_pain_relief_roll = new Image;
sub_nav_pain_relief_off.src = js_root + "images/sub_nav_pain_relief_off.gif";
sub_nav_pain_relief_roll.src = js_root + "images/sub_nav_pain_relief_roll.gif";


sub_nav_pharmacy_services_off = new Image;
sub_nav_pharmacy_services_roll = new Image;
sub_nav_pharmacy_services_off.src = js_root + "images/sub_nav_pharmacy_services_off.gif";
sub_nav_pharmacy_services_roll.src = js_root + "images/sub_nav_pharmacy_services_roll.gif";

sub_nav_respiratory_services_off = new Image;
sub_nav_respiratory_services_roll = new Image;
sub_nav_respiratory_services_off.src = js_root + "images/sub_nav_respiratory_services_off.gif";
sub_nav_respiratory_services_roll.src = js_root + "images/sub_nav_respiratory_services_roll.gif";

sub_nav_rehabilitation_therapies_off = new Image;
sub_nav_rehabilitation_therapies_roll = new Image;
sub_nav_rehabilitation_therapies_off.src = js_root + "images/sub_nav_rehabilitation_therapies_off.gif";
sub_nav_rehabilitation_therapies_roll.src = js_root + "images/sub_nav_rehabilitation_therapies_roll.gif";

sub_nav_sleep_disorders_off = new Image;
sub_nav_sleep_disorders_roll = new Image;
sub_nav_sleep_disorders_off.src = js_root + "images/sub_nav_sleep_disorders_off.gif";
sub_nav_sleep_disorders_roll.src = js_root + "images/sub_nav_sleep_disorders_roll.gif";

sub_nav_women_health_and_wellness_off = new Image;
sub_nav_women_health_and_wellness_roll = new Image;
sub_nav_women_health_and_wellness_off.src = js_root + "images/sub_nav_women_health_and_wellness_off.gif";
sub_nav_women_health_and_wellness_roll.src = js_root + "images/sub_nav_women_health_and_wellness_roll.gif";

sub_nav_wound_care_center_off = new Image;
sub_nav_wound_care_center_roll = new Image;
sub_nav_wound_care_center_off.src = js_root + "images/sub_nav_wound_care_center_off.gif";
sub_nav_wound_care_center_roll.src = js_root + "images/sub_nav_wound_care_center_roll.gif";

sub_nav_laboratory_services_off = new Image;
sub_nav_laboratory_services_roll = new Image;
sub_nav_laboratory_services_off.src = js_root + "images/sub_nav_laboratory_services_off.gif";
sub_nav_laboratory_services_roll.src = js_root + "images/sub_nav_laboratory_services_roll.gif";

//---------------------- While You Are With Us -------//

main_nav_while_you_are_with_us = new Image;
main_nav_while_you_are_with_us_off = new Image;
main_nav_while_you_are_with_us_roll = new Image;
main_nav_while_you_are_with_us.src = js_root + "images//main_nav_while_you_are_with_us.gif";
main_nav_while_you_are_with_us_off.src = js_root + "images//main_nav_while_you_are_with_us_off.gif";
main_nav_while_you_are_with_us_roll.src = js_root + "images//main_nav_while_you_are_with_us_roll.gif";

separator_while_you_are_with_us_off = new Image;
separator_while_you_are_with_us_roll = new Image;
separator_while_you_are_with_us_off.src = js_root + "images/separator_while_you_are_with_us_off.gif";
separator_while_you_are_with_us_roll.src = js_root + "images/separator_while_you_are_with_us_roll.gif";

sub_nav_patient_advocacy_off = new Image;
sub_nav_patient_advocacy_roll = new Image;
sub_nav_patient_advocacy_off.src = js_root + "images/sub_nav_patient_advocacy_off.gif";
sub_nav_patient_advocacy_roll.src = js_root + "images/sub_nav_patient_advocacy_roll.gif";

sub_nav_patient_rights_off = new Image;
sub_nav_patient_rights_roll = new Image;
sub_nav_patient_rights_off.src = js_root + "images/sub_nav_patient_rights_off.gif";
sub_nav_patient_rights_roll.src = js_root + "images/sub_nav_patient_rights_roll.gif";

sub_nav_adult_hospitalists_off = new Image;
sub_nav_adult_hospitalists_roll = new Image;
sub_nav_adult_hospitalists_off.src = js_root + "images/sub_nav_adult_hospitalists_off.gif";
sub_nav_adult_hospitalists_roll.src = js_root + "images/sub_nav_adult_hospitalists_roll.gif";

sub_nav_surgical_services_off = new Image;
sub_nav_surgical_services_roll = new Image;
sub_nav_surgical_services_off.src = js_root + "images/sub_nav_surgical_services_off.gif";
sub_nav_surgical_services_roll.src = js_root + "images/sub_nav_surgical_services_roll.gif";

sub_nav_pediatric_hospitalists_off = new Image;
sub_nav_pediatric_hospitalists_roll = new Image;
sub_nav_pediatric_hospitalists_off.src = js_root + "images/sub_nav_pediatric_hospitalists_off.gif";
sub_nav_pediatric_hospitalists_roll.src = js_root + "images/sub_nav_pediatric_hospitalists_roll.gif";


sub_nav_social_services_care_management_off = new Image;
sub_nav_social_services_care_management_roll = new Image;
sub_nav_social_services_care_management_off.src = js_root + "images/sub_nav_social_services_care_management_off.gif";
sub_nav_social_services_care_management_roll.src = js_root + "images/sub_nav_social_services_care_management_roll.gif";



//-------------------- Join Our Team --------------------//
main_nav_join_our_team = new Image
main_nav_join_our_team_off = new Image;
main_nav_join_our_team_roll = new Image;
main_nav_join_our_team.src = js_root + "images//main_nav_join_our_team.gif";
main_nav_join_our_team_off.src = js_root + "images//main_nav_join_our_team_off.gif";
main_nav_join_our_team_roll.src = js_root + "images//main_nav_join_our_team_roll.gif";


separator_join_our_team_off = new Image;
separator_join_our_team_roll = new Image;
separator_join_our_team_off.src = js_root + "images/separator_join_our_team_off.gif";
separator_join_our_team_roll.src = js_root + "images/separator_join_our_team_roll.gif";

sub_nav_working_at_firelands_off = new Image;
sub_nav_working_at_firelands_roll = new Image;
sub_nav_working_at_firelands_off.src = js_root + "images/sub_nav_working_at_firelands_off.gif";
sub_nav_working_at_firelands_roll.src = js_root + "images/sub_nav_working_at_firelands_roll.gif";

sub_nav_currently_open_positions_off = new Image;
sub_nav_currently_open_positions_roll = new Image;
sub_nav_currently_open_positions_off.src = js_root + "images/sub_nav_currently_open_positions_off.gif";
sub_nav_currently_open_positions_roll.src = js_root + "images/sub_nav_currently_open_positions_roll.gif";

sub_nav_our_benefits_package_off = new Image;
sub_nav_our_benefits_package_roll = new Image;
sub_nav_our_benefits_package_off.src = js_root + "images/sub_nav_our_benefits_package_off.gif";
sub_nav_our_benefits_package_roll.src = js_root + "images/sub_nav_our_benefits_package_roll.gif";

sub_nav_new_hire_forms_off = new Image;
sub_nav_new_hire_forms_roll = new Image;
sub_nav_new_hire_forms_off.src = js_root + "images/sub_nav_new_hire_forms_off.gif";
sub_nav_new_hire_forms_roll.src = js_root + "images/sub_nav_new_hire_forms_roll.gif";

sub_nav_physician_recruitment_off = new Image;
sub_nav_physician_recruitment_roll = new Image;
sub_nav_physician_recruitment_off.src = js_root + "images/sub_nav_physician_recruitment_off.gif";
sub_nav_physician_recruitment_roll.src = js_root + "images/sub_nav_physician_recruitment_roll.gif";

//-------------------- Giving Back --------------------//
main_nav_giving_back = new Image
main_nav_giving_back_off = new Image;
main_nav_giving_back_roll = new Image;
main_nav_giving_back.src = js_root + "images//main_nav_giving_back.gif";
main_nav_giving_back_off.src = js_root + "images//main_nav_giving_back_off.gif";
main_nav_giving_back_roll.src = js_root + "images//main_nav_giving_back_roll.gif";



separator_giving_back_off = new Image;
separator_giving_back_roll = new Image;
separator_giving_back_off.src = js_root + "images/separator_giving_back_off.gif";
separator_giving_back_roll.src = js_root + "images/separator_giving_back_roll.gif";

sub_nav_frmc_foundation_off = new Image;
sub_nav_frmc_foundation_roll = new Image;
sub_nav_frmc_foundation_off.src = js_root + "images/sub_nav_frmc_foundation_off.gif";
sub_nav_frmc_foundation_roll.src = js_root + "images/sub_nav_frmc_foundation_roll.gif";

sub_nav_ways_to_give_off = new Image;
sub_nav_ways_to_give_roll = new Image;
sub_nav_ways_to_give_off.src = js_root + "images/sub_nav_ways_to_give_off.gif";
sub_nav_ways_to_give_roll.src = js_root + "images/sub_nav_ways_to_give_roll.gif";

sub_nav_donation_off = new Image;
sub_nav_donation_roll = new Image;
sub_nav_donation_off.src = js_root + "images/sub_nav_donation_off.gif";
sub_nav_donation_roll.src = js_root + "images/sub_nav_donation_roll.gif";

sub_nav_donars_off = new Image;
sub_nav_donars_roll = new Image;
sub_nav_donars_off.src = js_root + "images/sub_nav_donars_off.gif";
sub_nav_donars_roll.src = js_root + "images/sub_nav_donars_roll.gif";

sub_nav_volunteering_off = new Image;
sub_nav_volunteering_roll = new Image;
sub_nav_volunteering_off.src = js_root + "images/sub_nav_volunteering_off.gif";
sub_nav_volunteering_roll.src = js_root + "images/sub_nav_volunteering_roll.gif";

sub_nav_auxiliary_off = new Image;
sub_nav_auxiliary_roll = new Image;
sub_nav_auxiliary_off.src = js_root + "images/sub_nav_auxiliary_off.gif";
sub_nav_auxiliary_roll.src = js_root + "images/sub_nav_auxiliary_roll.gif";

//-------------------- School of Nursing --------------------//
main_nav_school_of_nursing = new Image
main_nav_school_of_nursing_off = new Image;
main_nav_school_of_nursing_roll = new Image;
main_nav_school_of_nursing_on = new Image;
main_nav_school_of_nursing.src = js_root + "images//main_nav_school_of_nursing.gif";
main_nav_school_of_nursing_off.src = js_root + "images//main_nav_school_of_nursing_off.gif";
main_nav_school_of_nursing_roll.src = js_root + "images//main_nav_school_of_nursing_roll.gif";
main_nav_school_of_nursing_on.src = js_root + "images//main_nav_school_of_nursing_on.gif";

separator_school_of_nursing_off = new Image;
separator_school_of_nursing_roll = new Image;
separator_school_of_nursing_off.src = js_root + "images/separator_school_of_nursing_off.gif";
separator_school_of_nursing_roll.src = js_root + "images/separator_school_of_nursing_roll.gif";

sub_nav_about_us_off = new Image;
sub_nav_about_us_roll = new Image;
sub_nav_about_us_off.src = js_root + "images/sub_nav_about_us_off.gif";
sub_nav_about_us_roll.src = js_root + "images/sub_nav_about_us_roll.gif";

sub_nav_prospective_students_off = new Image;
sub_nav_prospective_students_roll = new Image;
sub_nav_prospective_students_off.src = js_root + "images/sub_nav_prospective_students_off.gif";
sub_nav_prospective_students_roll.src = js_root + "images/sub_nav_prospective_students_roll.gif";

sub_nav_current_students_off = new Image;
sub_nav_current_students_roll = new Image;
sub_nav_current_students_off.src = js_root + "images/sub_nav_current_students_off.gif";
sub_nav_current_students_roll.src = js_root + "images/sub_nav_current_students_roll.gif";

sub_nav_online_application_off = new Image;
sub_nav_online_application_roll = new Image;
sub_nav_online_application_off.src = js_root + "images/sub_nav_online_application_off.gif";
sub_nav_online_application_roll.src = js_root + "images/sub_nav_online_application_roll.gif";

sub_nav_admissions_requirements_off = new Image;
sub_nav_admissions_requirements_roll = new Image;
sub_nav_admissions_requirements_off.src = js_root + "images/sub_nav_admissions_requirements_off.gif";
sub_nav_admissions_requirements_roll.src = js_root + "images/sub_nav_admissions_requirements_roll.gif";

sub_nav_tuition_costs_off = new Image;
sub_nav_tuition_costs_roll = new Image;
sub_nav_tuition_costs_off.src = js_root + "images/sub_nav_tuition_costs_off.gif";
sub_nav_tuition_costs_roll.src = js_root + "images/sub_nav_tuition_costs_roll.gif";

sub_nav_financial_aid_off = new Image;
sub_nav_financial_aid_roll = new Image;
sub_nav_financial_aid_off.src = js_root + "images/sub_nav_financial_aid_off.gif";
sub_nav_financial_aid_roll.src = js_root + "images/sub_nav_financial_aid_roll.gif";

sub_nav_academic_calendar_off = new Image;
sub_nav_academic_calendar_roll = new Image;
sub_nav_academic_calendar_off.src = js_root + "images/sub_nav_academic_calendar_off.gif";
sub_nav_academic_calendar_roll.src = js_root + "images/sub_nav_academic_calendar_roll.gif";

sub_nav_view_awards_off = new Image;
sub_nav_view_awards_roll = new Image;
sub_nav_view_awards_off.src = js_root + "images/sub_nav_view_awards_off.gif";
sub_nav_view_awards_roll.src = js_root + "images/sub_nav_view_awards_roll.gif";

sub_nav_loan_application_and_counseling_off = new Image;
sub_nav_loan_application_and_counseling_roll = new Image;
sub_nav_loan_application_and_counseling_off.src = js_root + "images/sub_nav_loan_application_and_counseling_off.gif";
sub_nav_loan_application_and_counseling_roll.src = js_root + "images/sub_nav_loan_application_and_counseling_roll.gif";

sub_nav_alumni_updates_off = new Image;
sub_nav_alumni_updates_roll = new Image;
sub_nav_alumni_updates_off.src = js_root + "images/sub_nav_alumni_updates_off.gif";
sub_nav_alumni_updates_roll.src = js_root + "images/sub_nav_alumni_updates_roll.gif";

sub_nav_contact_us_school_of_nursing_off = new Image;
sub_nav_contact_us_school_of_nursing_roll = new Image;
sub_nav_contact_us_school_of_nursing_off.src = js_root + "images/sub_nav_contact_us_school_of_nursing_off.gif";
sub_nav_contact_us_school_of_nursing_roll.src = js_root + "images/sub_nav_contact_us_school_of_nursing_roll.gif";

//-------------------- Medical Education --------------------//
main_nav_medical_education = new Image
main_nav_medical_education_off = new Image;
main_nav_medical_education_roll = new Image;
main_nav_medical_education.src = js_root + "images//main_nav_medical_education.gif";
main_nav_medical_education_off.src = js_root + "images//main_nav_medical_education_off.gif";
main_nav_medical_education_roll.src = js_root + "images//main_nav_medical_education_roll.gif";

separator_medical_education_off = new Image;
separator_medical_education_roll = new Image;
separator_medical_education_off.src = js_root + "images/separator_medical_education_off.gif";
separator_medical_education_roll.src = js_root + "images/separator_medical_education_roll.gif";

sub_nav_programs_off = new Image;
sub_nav_programs_roll = new Image;
sub_nav_programs_off.src = js_root + "images/sub_nav_programs_off.gif";
sub_nav_programs_roll.src = js_root + "images/sub_nav_programs_roll.gif";

sub_nav_rotations_off = new Image;
sub_nav_rotations_roll = new Image;
sub_nav_rotations_off.src = js_root + "images/sub_nav_rotations_off.gif";
sub_nav_rotations_roll.src = js_root + "images/sub_nav_rotations_roll.gif";

sub_nav_staff_off = new Image;
sub_nav_staff_roll = new Image;
sub_nav_staff_off.src = js_root + "images/sub_nav_staff_off.gif";
sub_nav_staff_roll.src = js_root + "images/sub_nav_staff_roll.gif";

sub_nav_quickfacts_off = new Image;
sub_nav_quickfacts_roll = new Image;
sub_nav_quickfacts_off.src = js_root + "images/sub_nav_quickfacts_off.gif";
sub_nav_quickfacts_roll.src = js_root + "images/sub_nav_quickfacts_roll.gif";

sub_nav_location_off = new Image;
sub_nav_location_roll = new Image;
sub_nav_location_off.src = js_root + "images/sub_nav_location_off.gif";
sub_nav_location_roll.src = js_root + "images/sub_nav_location_roll.gif";

sub_nav_trainees_off = new Image;
sub_nav_trainees_roll = new Image;
sub_nav_trainees_off.src = js_root + "images/sub_nav_trainees_off.gif";
sub_nav_trainees_roll.src = js_root + "images/sub_nav_trainees_roll.gif";

sub_nav_testimonials_off = new Image;
sub_nav_testimonials_roll = new Image;
sub_nav_testimonials_off.src = js_root + "images/sub_nav_testimonials_off.gif";
sub_nav_testimonials_roll.src = js_root + "images/sub_nav_testimonials_roll.gif";

sub_nav_alumni_medical_edication_off = new Image;
sub_nav_alumni_medical_edication_roll = new Image;
sub_nav_alumni_medical_edication_off.src = js_root + "images/sub_nav_alumni_medical_edication_off.gif";
sub_nav_alumni_medical_edication_roll.src = js_root + "images/sub_nav_alumni_medical_edication_roll.gif";

sub_nav_events_off = new Image;
sub_nav_events_roll = new Image;
sub_nav_events_off.src = js_root + "images/sub_nav_events_off.gif";
sub_nav_events_roll.src = js_root + "images/sub_nav_events_roll.gif";

sub_nav_gb_events_off = new Image;
sub_nav_gb_events_roll = new Image;
sub_nav_gb_events_off.src = js_root + "images/sub_nav_gb_events_off.gif";
sub_nav_gb_events_roll.src = js_root + "images/sub_nav_gb_events_roll.gif";

sub_nav_application_off = new Image;
sub_nav_application_roll = new Image;
sub_nav_application_off.src = js_root + "images/sub_nav_application_off.gif";
sub_nav_application_roll.src = js_root + "images/sub_nav_application_roll.gif";

btn_print_off = new Image;
btn_print_roll = new Image;
btn_print_off.src = js_root + "images/btn_print_off.gif";
btn_print_roll.src = js_root + "images/btn_print_roll.gif";
//------------------------------------------------------------------------------------------------//

/*

_off = new Image;
_roll = new Image;
_off.src = js_root + "images/_off.gif";
_roll.src = js_root + "images/_roll.gif";
*/
isLoaded = true;

