
function Imagem() {
	
	this.carregar = function(objeto) {
		$('IMG').src = objeto.getAttribute('href');
		return false;
	}
	
}

imagem = new Imagem();


