var brandDiv = document.getElementById("brandBreadcrumb");
var marketDiv = document.getElementById("marketBreadcrumb");

var pageURL = location.href;

if (!((pageURL.indexOf("casinos/flamingo-las-vegas") != -1) || (pageURL.indexOf("casinos/harveys-lake-tahoe") != -1) ||
(pageURL.indexOf("casinos/paris-las-vegas") != -1) || (pageURL.indexOf("casinos/rio") != -1)
|| (pageURL.indexOf("casinos/showboat-atlantic-city") != -1)))
{
	if ((document.cookie.length > 0) && (document.cookie.indexOf("brandCookie=") != -1)) {

	marketDiv.style.display = "none";
	brandDiv.style.display = "";

	var expiration = new Date();
	expiration.setMinutes(expiration.getMinutes() + 30);
	document.cookie = "brandCookie=true;expires=" + expiration.toUTCString() + ";path=/";
	} 
}
