﻿// NO LONGER NEEDED BECAUSE THERE IS NO OTHER LANDING PAGE ATTRIBUTED TO "HOME"


// HOME NAVIGATION

// All divs are showing by default. 
// Turning off the "on" divs will leave the "off" divs showing.
$("#nav_home_on").hide();
$("#nav_homeTaking_on").hide();


// Then, depending on what page you are on, 
//      the correct "on" div will be turned on 
//      and the "off" div will be turned off.

// myPageName comes from custom.js
switch(myPageName) {
	//0.0
	case "Default.aspx":
		$("#nav_home_off").hide();
		$("#nav_home_on").show();
	    $("#nav_homeFibro_off").removeClass("navSeparator");
	    $("#nav").addClass("navTopMarginLanding");
		break;
	//0.0
	case "":
		$("#nav_home_off").hide();
		$("#nav_home_on").show();
	    $("#nav_homeFibro_off").removeClass("navSeparator");
	    $("#nav").addClass("navTopMarginLanding");
		break;
	//1.0	
	case "taking-lyrica.aspx":
		$("#nav_homeTaking_off").hide();
		$("#nav_homeTaking_on").show();
	    $("#nav").addClass("navTopMarginLanding");
		break;
		
//	default:  //just in case a new page is added
//		$("#header_background").addClass("header_temp");  //handle the header
//		$("#nav_BottomArt").addClass("nav_BottomArt_aboutBanzel"); //handle the nav bottom art
	    
}


