//identify subsection
var subsection = "";
var color1 = "#ff0000";
var color2 = "#000000";
var header_bg = "http://alldayfiles.com/standard/tumblr/header-bg.jpg";
//if (location.href.search("New_York") > 0) { subsection = 'new_york'; color1 = '#b99b67'; color2 = '#000000'; header_bg = "http://alldayfiles.com/standard/tumblr/header-bg-new_york.jpg"; };
//if (location.href.search("Hollywood") > 0) { subsection = 'hollywood'; color1 = '#aaa9a7'; color2 = '#002f77'; header_bg = "http://alldayfiles.com/standard/tumblr/header-bg-hollywood.jpg"; };
//if (location.href.search("Downtown_LA") > 0) { subsection = 'downtown_la' };
//if (location.href.search("Miami") > 0) { subsection = 'miami'; color2 = '#f6b501'; color1 = '#a09790'; header_bg = "http://alldayfiles.com/standard/tumblr/header-bg-miami.jpg"; };
if (location.href.search("sounds") > 0) { subsection = 'shop_sounds' };
if (location.href.search("scents") > 0) { subsection = 'shop_scents' };
if (location.href.search("wear") > 0) { subsection = 'shop_wear' };
if (location.href.search("art") > 0) { subsection = 'shop_art' };
if (location.href.search("stuff") > 0) { subsection = 'shop_stuff' };
if (location.href.search("collaborations") > 0) { subsection = 'shop_collaborations' };

function doCSS () {
	if (subsection != "") {
		document.getElementById(subsection).style.color = color1;
	};
};

doCSS();
