/* -------------------------------------------------- */
/* SOURCE CODE                                        */
/* -------------------------------------------------- */

$().ready(function() {
/* -------------------------------------------------- */
/* estandes                                           */
/* -------------------------------------------------- */
	if ($("#estandes").length > 0)
	{
		$("#a-foto").live('click', function() {
			$("#img-foto").show();
			$("#img-projeto").hide();

			$("#a-foto").hide();
			$("#a-projeto").show();

			return false;
		});

		$("#a-projeto").live('click', function() {
			$("#img-foto").hide();
			$("#img-projeto").show();

			$("#a-foto").show();
			$("#a-projeto").hide();

			return false;
		});
	}
/* -------------------------------------------------- */
});
