  //NEWS / HOME
if (location.href.indexOf("/news-event/") != -1) {
  imgnum = 2;
  //PRODUCTS
} else if (location.href.indexOf("/bikes/") != -1) {
  imgnum = 1;
  //SERVICE
} else if (location.href.indexOf("/service/") != -1) {
  imgnum = 7;
  //SHOP
} else if (location.href.indexOf("/shop/") != -1) {
  imgnum = 8;
  //GALLERY
} else if (location.href.indexOf("/gallery/") != -1) {
  imgnum = 5
  //RIDES & LINKS
} else if (location.href.indexOf("/riding/") != -1) {
  imgnum = 6;
  // CONTACT US
} else if (location.href.indexOf("/contact/") != -1) {
  imgnum = 4;
  // HOT DEALS!
} else if (location.href.indexOf("/hot-deals/") != -1) {
  imgnum = 3;  
  //DEFAULT
} else {
  imgnum = 10;
}

//alert(imgnum);
