// JavaScript Document
function swapImage(image,title,description) {
    var thetitle = document.getElementById("title");
    var thedescription = document.getElementById("description");
    thetitle.firstChild.nodeValue = title;
    thedescription.firstChild.nodeValue = description;
 
    document.images.largeimg.src = "images/screenshots/med/" + image;
    document.images.largeimg.alt = "a href=''>" + title + "</a>";
}
