/*
 * Created on 11 mai 2010
 * @file validate.js 
 * @author Jeannette Gaetan
 * @version 1.0
 */

function changePicture(img)
{
	var aux = null;
	aux = img.src.split('-');
	document.images.namedItem('thumbnail').src = aux[0]+ '-' + aux[1] + '.jpg';
	/*document.getElementById('gallery-screen').children[0].href = aux[0]+ '-' + aux[1] + '.jpg';*/
}

function changeImage(id, src)
{
	document.getElementById(id).src = src;
}
