﻿// JavaScript Document
$(document).ready(function() {
	marcarMenu();
});

/*window.onerror= function(a) {
	alert("Se ha producido el siguiente error: \n" + a);
	return true;
};*/

function marcarMenu(){
	opcion = jQuery("ul.top-menu > li > a");
	opcion.removeClass("active");
	var loc = document.location.href.split(/[\?#]/).shift().replace(/\/$/, '');
	jQuery("ul.top-menu > li > a").each(function() {
		if (this.href == loc) jQuery(this).addClass("active");
	});
}

function VolverAtras(page) {
	if (history.length==0 || history.length==undefined){
		window.location=page;
	}
	else {
		history.go(-1);
	}
	
}

