//*********************************************************************************************//
//* BREADCRUMB.JS  1.0  10/18/02
//* Control variables for the Disney.com Micro Chrome
//*********************************************************************************************//

//* 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.

//*****NOTE:*****//
//* ALL variable declarations are required.  DO NOT delete
//* any of the variable declarations below.  If a variable
//* is not needed please set that variable equal to null.

//* ALL VARIABLE VALUES NEED TO BE DEFINED AS STRING VALUES
//* i.e. ENCLOSED WITHIN QUOTATION MARKS (" ")
//* EXCEPT FOR VARIABLES THAT ARE SET TO null.

//*********************************************************************************************//
//* CHROME COLOR
//*********************************************************************************************//
// This variable sets the color of your chrome
// All colors that are not included in the list below
// require approval.
//
// 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 = "#003399";

//*********************************************************************************************//
//* CHROME WIDTH
//*********************************************************************************************//
// This is the variable that defines the width of your chrome.  The DOL
// site spec requires a 770 width.  Please DO NOT modify this variable
// unless approval had been given to use a different width.
//

var chromeWidth = 640;


//*********************************************************************************************//
//* FIRST LEVEL OF BREADCRUMB
//*********************************************************************************************//
// This is the first level of the breadcrumb.
// There are 9 pre-defined choices for this variable
// please choose from one of the following:
//
//	Entertainment
//	FamilyFun
//	GuestServices
//	KidsIsland
//	Playhouse
//	Shopping
//	Vacations
//	DisneyInsider
//	MainStreet
//	Blast
//
// 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 = "Vacations";


//*********************************************************************************************//
//* SECOND LEVEL OF BREADCRUMB
//*********************************************************************************************//
// These are the variables for the Second level of 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 = "Disney Weddings";
var bCrumbLevel_2_url = "http://disney.go.com/vacations/disneyweddings/index.html";


//*********************************************************************************************//
//* 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
//
// *** NOTE: IF there is no level 2 linking URL then the third level
//           breadcrumb will NOT be displayed.  There MUST be a level 2
//			 linking url in order for the 3rd level to be displayed.
//
// 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;


//*********************************************************************************************//
//* LEGAL FOOTER COLOR
//*********************************************************************************************//
// This is the variable for the Legal Footer text color.

// You can pick from 3 standard colors:
//
// 	#003399   (blue)
//  	#FFFFFF   (white)
//	#000000   (black)
//
// Example:
//
//	var legalFooterColor = "#000000";
//
// If no color is defined then the default (White) will be declared.
//

var legalFooterColor = null;


//*********************************************************************************************//
//* CUSTOMIZING YOUR BREADCRUMB.JS   (OPTIONAL)
//********************************************************************************************//
//* The chrome.js is built so that all customization occurs in the BREADCRUMB.JS
//*
//* For example:
//*	You can further simplify your breadcrumb.js to include multiple breadcrumb
//* possibilities. If you want to use one breadcrumb.js file for multiple pages
//* that contain different breadcrumbs, you can use the function below.  You can
//* also control color this way as well.
//*

//*** IMPORTANT: TO USE THIS FUNCTIONALITY, UNCOMMENT THE LINE BELOW: ***//
// function isThisPage(identifier){var locTemp=location.href; return (locTemp.indexOf(identifier) != -1) ? true : false;}

//* The function, isThisPage, takes in a string value.  You would need to pass in
//* a unique substring of the URL of your page.  If the substring you passed to the function
//* matches the URL that you are on, then the function will return true, otherwise it will return false.

//* Example of how to use this function

//		if(isThisPage("disney.go.com/disneypictures/monstersinc")){
//			chromeColor = "#333333"
//			bCrumbLevel_3_text = "Monsters INC.";
//			bCrumbLevel_3_url = "http://disney.go.com/disneypictures/monstersinc/index.html";
//		}else if(isThisPage("disney.go.com/disneypictures/liloandstitch")){
//			chromeColor = "#003399"
//			bCrumbLevel_3_text = "Lilo and Stitch";
//			bCrumbLevel_3_url = "http://disney.go.com/disneypictures/liloandstitch/index.html";
//		}else{
//			bCrumbLevel_3_text = null;
//		}
//
//* NOTE:  You need to consider how much information to place into this file.
//*        The more info you put into this file, the bigger the file gets


