
function formatTitle(title, currentArray, currentIndex, currentOpts) {
  
    return '<span id="fancybox-title-over" style="position: relative;">' + (title && title.length ? title : titleArray[currentIndex]) + '<span style="position: absolute; right: 10px; top: 11px;">&copy; Molok Ltd.</span></span>';
}

jQuery(document).ready(function() {

    $("a[rel=gallery_images]").fancybox({
    		'transitionIn'		: 'none',
    		'transitionOut'		: 'none',
    		'titlePosition' 	: 'over',
    		'titleFormat'       : formatTitle

    	});

});

