$(document).ready(function() {
	$("a[rel=fancybox]").fancybox({
	'transitionIn'	: 'fade',
	'transitionOut'	: 'fade',
	'titlePosition' : 'over',
	'titleFormat'         : function(title, currentArray, currentIndex, currentOpts) {
		if(currentOpts.title != ''){
			return '<span id="fancybox-title-over">' + currentOpts.title + '</span>'
		}
	}});
	$("img","a[rel=fancybox]").css("border","1px solid #678210");
});

