// JavaScript Document
function swap_img(_el, _img){
	var imagen = document.getElementById(_el);
	imagen.src = _img;
}

