$().ajaxError(function(ev,xhr,o,err) {
    alert('error: '+err);
    if (window.console && window.console.log) console.log(err);
});

$(document).ready(function () {
	//efecto roll para anclas de accesibilidad
	$("a.anchorLink").click(function () {
		elementClick = $(this).attr("href");
		destination = $(elementClick).offset().top;
		$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, 1800 );
		return false;
	});
});