registerLoadTask(function(){
	$('#AboutVanilla a').click(function(){
		var href;

		if(typeof this.getAttribute == 'undefined') {
			href = this.href;
		}
		else {
			href = this.getAttribute('href', 2);
		}
		if(!href) return true;
		window.open(href);
		return false;
	});
});

