function changeBackground(newBackground)
{
 elem = document.getElementById("bigimage");
 elem.style.backgroundImage = "url('img/backgrounds/" + aryImages[newBackground] + ".jpg')";
 
 newtext = document.getElementById("specific2");
 newtext.innerHTML = textSnippets[newBackground];
 
 transtext = document.getElementById("transtext");
 transtext.innerHTML = "<img src=\"img/transtext/" + aryImages[newBackground] + ".png\">";

 
}


