$(function () {
		$('.imagen-universidad div').click(function () {
			var url = $(this).attr("rel");
			$(".imagen-actual span").hide("fast");
			$(".imagen-actual span").html("&copy;&nbsp;" + ($(this).attr("rel2")));
			$(".imagen-actual div").hide("slow", function() { $(".imagen-actual div").html("<img src='" + url + "' />"); });
			setTimeout("$(\".imagen-actual div\").show(\"slow\"); $(\".imagen-actual span\").show();", 2000);
		});

	});