//Activar menú superior
$(document).ready( function() {
		var loc = document.location.href.split(/[\?#]/).shift().replace(/\/$/, '');
		$("a").each(function() {
			if (this.href == loc) $(this).addClass("current");
		});
	});
