// JavaScript Document

function switchImage(x)
{
var image = 'images/gallery/photo/' + x + '.jpg';
document.getElementById('photo').src=image;
}

