	google.load("jquery", "1.3.2");
	//***************************** */
	function ucwords (str) {
		return (str+'').replace(/^(.)|\s(.)/g, function ( $1 ) { return $1.toUpperCase( ); } );
	}


	this.tooltip = function(){	
			xOffset = 10;
			yOffset = 20;
		$("a.tooltip").hover(function(e){											  
			this.t = this.title;
			this.title = "";									  
			$("body").append("<p id='tooltip'>"+ this.t +"</p>");
			$("#tooltip")
				.css("top",(e.pageY - xOffset) + "px")
				.css("left",(e.pageX + yOffset) + "px")
				.fadeIn("fast");		
		},
		function(){
			this.title = this.t;		
			$("#tooltip").remove();
		});	
		$("a.tooltip").mousemove(function(e){
			$("#tooltip")
				.css("top",(e.pageY - xOffset) + "px")
				.css("left",(e.pageX + yOffset) + "px");
		});			
	};
	//***************************** */
	
	google.setOnLoadCallback(function() {		
			//Variables de Inicio
			n_data = new Array();
			m_data = new Array();
			v_data = new Array();
			
			n_a = 0; $('.module_groups .tb a').each(function(){ n_data[n_a++] = new Array($(this).text()); });
			n_a = 0; $('.module_groups .tb p').each(function(){ m_data[n_a++] = new Array($(this).text()); });			
			n_a = 0; $('.module_groups .ib a').each(function(){ $(this).attr("class", "tooltip"); $(this).attr("title", "<strong>"+n_data[n_a]+"</strong><br/>"+m_data[n_a]); n_a++; });
			
			//Agregar Tooltips para Videoteca
			n_a = 0; $('.module_members a').each(function(){ $(this).attr("class", "tooltip"); $(this).attr("title", ucwords($(this).attr("title"))); n_a++; });

			//Activar los ToolTips
			tooltip();
			
			//Agregar contenidos debajo del Menu
			/*
			$(".module_text").eq(3).addClass("box_galeria");
			$("p:even").removeClass("module_text");
			*/
    });