jQuery(document).ready(function() { /* * Examples - images */ $("a#example4").fancybox(); $("a#example6").fancybox({ 'titlePosition' : 'over' }); $("a[rel=example_group]").fancybox({ 'transitionIn' : 'none', 'transitionOut' : 'none', 'titlePosition' : 'over', 'titleFormat' : function(title, currentArray, currentIndex, currentOpts) { return 'Image ' + (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + ''; } }); function formatTitle(title, currentArray, currentIndex, currentOpts) { return '
'; } /* * Zebra-stripping table */ $("table.options tr:even").addClass('even'); });