/*
 * Function to change an image and his link to shadowbox
 * src = url to the new image
 * src_l = link to the large image for shadowbox
 */
function change_img (src, src_l, title) {
	
	//document.getElementById("model_img_link").href = src_l;
	document.getElementById("model_img").title = title;
	document.getElementById("model_img").src = src;
}
