jQuery.noConflict();
	
	//Oculta el popup del menú cuando el usario sale por abajo
	jQuery(document).ready(function(e) {
			
		var fontActive = false;

		//COOKIE
		var fontActive = (jQuery.cookie('fontActive') == "true") ? true : false;
		// Set the user's selection for the left column
		if(fontActive){
			jQuery("#HomeContenido p").css("font-size","13px");
			jQuery("#HomeContenido a").css("font-size","13px");
			jQuery("#HomeContenido a span").css("font-size","13px");
			//jQuery("#TopGlobal a").css("font-size","13px");
			jQuery("#fontSize").text("Reducir fuente");
		}
		
		jQuery("#fontSize").click(function(e){
			e.preventDefault();
			e.stopPropagation();
			
			if(!fontActive){
				jQuery("#HomeContenido p").css("font-size","13px");
				jQuery("#HomeContenido a").css("font-size","13px");
				jQuery("#HomeContenido a span").css("font-size","13px");
				//jQuery("#TopGlobal a").css("font-size","13px");
				
				jQuery.cookie('fontActive', true);
				fontActive = true;
				jQuery("#fontSize").text("Reducir fuente");
			}else{
				jQuery("#HomeContenido p").css("font-size","11px");
				jQuery("#HomeContenido a").css("font-size","11px");
				jQuery("#HomeContenido a span").css("font-size","11px");
				//jQuery("#TopGlobal a").css("font-size","11px");
				
				jQuery.cookie('fontActive', false);
				fontActive = false;
				jQuery("#fontSize").text("Ampliar fuente");
			}
		});
	});
