//*BREADCRUMB.JS 1.0 10/18/02 //*Control variables for the Disney.com chrome //*AUTHOR: MICHAEL ERMINO //* //* This JS is a file that will live on the root of your site or subsite. //* You will be able to control the color of the chrome and the breadcrumb. //* ALL variable declarations are required. DO NOT delete //* any of the variable declarations below. If a variable is not needed //* then please set that variable equal to null. //*****CHROME COLOR*****// //This is the variable that sets the color of your chrome. //All colors that are not included in the list below //require approval from Chris Thomes and Jessica Page Irwin //Here is a list of approved colors: // #003399 (blue) // #333333 (dark) // #006600 (green) // #330066 (purple) // //Example: // // var chromeColor = "#330066"; // //If the variable is set to null the chrome will default to blue. var chromeColor = null; //*****FIRST LEVEL OF BREADCRUMB*****// //This is the first level of the breadcrumb. //There are 9 predefined choices for this variable //please choose from one of the following: // // Entertainment // FamilyFun // GuestServices // KidsIsland // Playhouse // Shopping // Vacations // DisneyInsider // MainStreet // //Example: // var bCrumbLevel_1 = "Entertainment"; // // NOTE: If the variable is left null the first level breadcrumb will be: // Where the Magic Lives Online! // and the 2nd and 3rd levels of the breadcrumb will not appear. // var bCrumbLevel_1 = null; //*****SECOND LEVEL OF BREADCRUMB*****// //These are the variables for the Second level of the breadcrumb //The variable bCrumbLevel_2_text is the text that will be displayed //The variable bCrubmLevel_2_url is the linking URL for the text // //Example: // // var bCrumbLevel_2_text = "Disney Pictures"; // var bCrumbLevel_2_url = "http://disney.go.com/disneypictures/index.html"; // //If no linking URL is required then set the linking variable to null. // //Example: // // var bCrumbLevel_2_text = "Disney Pictures"; // var bCrumbLevel_2_url = null; // // var bCrumbLevel_2_text = null; var bCrumbLevel_2_url = null; //*****THIRD LEVEL OF BREADCRUMB (OPTIONAL)*****// //These are the variables for the Third level of breadcrumb. //***This 3rd level is optional // //The variable bCrumbLevel_3_text is the text that will be displayed //The variable bCrubmLevel_3_url is the linking URL for the text // //Example: // // var bCrumbLevel_3_text = "Monsters INC."; // var bCrumbLevel_3_url = "http://disney.go.com/disneypictures/monstersinc/index.html"; // //If no linking URL is required then set the linking variable to null. // //Example: // // var bCrumbLevel_3_text = "Monsters INC."; // var bCrumbLevel_3_url = null; // //If no 3rd level breadcrumb is needed leave the variables set to null // //Example: // var bCrumbLevel_3_text = null; // var bCrumbLevel_3_url = null; // // var bCrumbLevel_3_text = null; var bCrumbLevel_3_url = null;