if (location.href.indexOf("/zenphoto/") != -1) {
document.write("<style>body{");
} else {
	document.write("<style>html{");
	}

  //ABOUT
if (location.href.indexOf("/content/about/") != -1) {
  bgnum = 2;
  //THE FILM
} else if (location.href.indexOf("/content/the-film/") != -1) {
  bgnum = 4;
  //PHOTO
} else if (location.href.indexOf("/zenphoto/") != -1) {
  bgnum = 5;
  //VIDEO
} else if (location.href.indexOf("/content/videos/") != -1) {
  bgnum = 1;
  //CONTACT
} else if (location.href.indexOf("/content/contact/") != -1) {
  bgnum = 3
} else if (location.href.indexOf("id=46") != -1) {
  bgnum = 6;
  // HOME
} else if (location.href.indexOf("/home.php") != -1 || location.href.indexOf("/media/") != -1 || location.href.indexOf("/email-sign-up/") != -1 || location.href.indexOf("/rss-feeds/") != -1) {
  bgnum = 8;
  // FOLLOW ME...
} else if (location.href.indexOf("/followme.php") != -1 || location.href.indexOf("/followme-test") != -1 || location.href.indexOf("/followme-buy") != -1) {
  bgnum = 9;
  //DEFAULT
} else {
  bgnum = 7;
}

//prompt(bgnum);

document.write("background:url(/images/bg/bg"+bgnum+".jpg) repeat-x;");
document.write("background-attachment: fixed;");
document.write("background-position: top;");

if (bgnum == 9) {
document.write("background-color: #00a4eb;");
} else {
	document.write("background-color: #000;");
	}
	

document.write("}</style>");