// JavaScript Document

$(document).ready(function() {
	/*
	*   Examples - images
	*/

	$("a.fancybox").fancybox({
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' + title + '</span>';
		}
	});
});

