$(document).ready(function()
{
	$('a.fullsize').fancybox({
		overlayColor: '#333',
		titlePosition: 'inside',
		titleFormat: function(text)
		{
			text   = text.split(':');
			title  = text[0];
			body   = text[1].replace(/\n/g, '<br/>');

			return '<h6>'+ title +'</h6>'
				+  '<p>'+ body +'</p>'
				+  '<p class="copyright"><small>Original Artwork © Jo Wood</small></p>'
		}});

	$('form a.delete').click(function()
	{
		return confirm('This action cannot be undone.\n\nContinue?');
	});
});
