// List image names without extension

	

// Tell browser where to find the image
ImgSrc = "/images/content/home/sponsorships";

// Tell browser the type of file
ImgEnd = ".jpg";


 bImg = 0;
 v = 0;
var sponsorDeatilLink;


// Create function to load image
function loadImg(){
  document.bigImg.src = bigImg[b];
  document.logoImg.src = logoImg[b];
  sponsorDetailLink=sponsorLinks[b];
}

// Create link function to switch image backward
function prev(){
  if(bImg<1){
     l = bImg
  } else {
     bImg--;
     l = bImg;
  }
  document.bigImg.src = bigImg[l];
  document.logoImg.src = logoImg[l];
  sponsorDetailLink=sponsorLinks[l];
  
}

// Create link function to switch image forward
function next(){
  
  
  if(bImg >= bigImg.length -1 ){
    l = bImg;
  } else {
    bImg++;
    l = bImg;
  }
  
  document.bigImg.src = bigImg[l];
  document.logoImg.src = logoImg[l];
  sponsorDetailLink=sponsorLinks[l];
   
}


// Load function after page loads
//window.onload=loadImg;
