// javascript document $(function(){ $("#demo1").fancybox({ 'transitionin' : 'elastic', 'transitionout' : 'elastic', 'titleposition' : 'inside' }); $("a[rel=group]").fancybox({ 'titleposition' : 'over', 'cyclic' : true, 'titleformat' : function(title, currentarray, currentindex, currentopts) { return '' + (currentindex + 1) + ' / ' + currentarray.length + (title.length ? '   ' + title : '') + ''; } }); $("#showdiv").fancybox({'centeronscroll':true}); $("#ajax").fancybox({'width':400}); $("#iframe").fancybox({ 'width':'75%', 'height':'75%', 'autoscale':false }); $("#swf").fancybox({ 'autoscale':false }); $("#modal").fancybox({ 'modal':false, 'overlayshow':true, 'hideonoverlayclick':false, 'hideoncontentclick':false, 'enableescapebutton':false, 'showclosebutton':false, 'centeronscroll':true, 'autoscale':false, 'width':540, 'height':360 }); });