// JavaScript Document
$(document).ready(function() {
	$("a.fotoPeq").click(function(e) {
		$("img#laFotoGrande").attr("src", this.href);
		e.preventDefault();
	});
});