timer = null;
$(document).ready(function() {
	anchor.init()
	$('#sidebar-right-donaciones').hover(function(){
		if(timer) {
			clearTimeout(timer);
			timer = null;
		}
		$('#sidebar-right-donaciones .tooltip').show();
	},function(){
		timer = setTimeout(function(){
			$('#sidebar-right-donaciones .tooltip').hide();
		},500);

	});

});

$(document).ready(function() {
	anchor.init()
	$('#tienda_nooper').hover(function(){
		if(timer) {
			clearTimeout(timer);
			timer = null;
		}
		$('#sidebar-right-tienda .tooltip2').show();
	},function(){
		timer = setTimeout(function(){
			$('#sidebar-right-tienda .tooltip2').hide();
		},1000);

	});

});

anchor = {
	init : function() {
		$("a.anchorLink").click(function () {
		elementClick = $(this).attr("href")
		destination = $(elementClick).offset().top;
		$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, 1100 );
		return false;
		})
	}
}