// MAKE DUPLICATE HOME PAGES. DEFINE WHAT GETS DISPLAYED IN THE CSS
function hasPath(sPath)
{
re = new RegExp("\/" + sPath + "(\/|$)");
return re.test(window.location)
}

if (hasPath("galleries"))
YD.addClass(document.body, "galleries");

if (hasPath("featuredgalleries"))
YD.addClass(document.body, "featuredgalleries");

if (hasPath("contact"))
YD.addClass(document.body, "contact");