$(document).ready(function() 
{
	$("#content p a.gallery").fancybox();
	
	$("a.anchorLink").anchorAnimate();

	$("a").filter(function() 
	{
		return this.hostname && this.hostname !== location.hostname;
	})
	.click(function() 
	{
		window.open(this.href);
		
		return false;
	});
});