//this script simulates hitting a web service for the header info.
//create enumerations for possible header types, themes and languages
var header_type;
var header_lang;
var header_theme;

var location_name;
var location_address;
var location_phone;








//randomly pick the header type
/*
if (Math.floor(Math.random()*2) == 0)
{
	header_type = 	Enums.HeaderTypes.main_site;
	header_theme = 	Enums.HeaderThemes.dm;
	header_lang = 	Enums.HeaderLangs.en;
}
else
{
	header_type = 	Enums.HeaderTypes.location_specific;
	header_theme = 	Enums.HeaderThemes.dm;
	header_lang = 	Enums.HeaderLangs.en;

	//randomly pick location info
	if (Math.floor(Math.random()*2) == 0)
	{
		location_name = "Pierce Brothers Valley Oaks Memorial Park";
		location_address = "5600 Lindero Canyon Road, Westlake Village, CA 91362";
		location_phone = "818-889-0902";	
	}
	else
	{
		location_name = "Rickard, Breese and McCoy Funeral Home";
		location_address = "5200 Lankershim Blvd. #800, North Hollywood, CA 91601";
		location_phone = "818-755-2251";
	}
}
*/