$(function () {
    	var tabContainers = $('div.tabs > div');
        tabContainers.hide().filter(':first').show();

        $('div.tabs ul.tabNavigation a').click(function () {
        	tabContainers.hide();
            tabContainers.filter(this.hash).fadeIn();
            $('div.tabs ul.tabNavigation a').removeClass('selected');
            $(this).addClass('selected');
            load();
            return false;
		}).filter(':first').click();

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

	});
