$(document).ready( function()
{
	// Adds a CSS3 text-shadow on elements that contains text
	$("a, address, ul li, h1, h2, h3, h4, p").css({ "text-shadow" : "1px 1px 0px white" });
	
	
	// Fancy box effects
	$("a.single_image").fancybox();
	
	$("a.single_image_description").fancybox({
		'titlePosition'	: 'over'
	});

});