$(document).ready(function() { //-------------------- Gallery $('#gallery_wrapper').addClass('loading'); $('#gallery').cycle( { fx: 'fade', speed: 2000, timeout: 6000, next: '#next', prev: '#prev', before: onBefore, after: onAfter, cleartype: 1 }); function onBefore() { $('#gallery_captions').animate( { height: "0", opacity: 0 }, 500 ); $('#gallery_captions').html(''); } function onAfter(curr,next,opts) { if (this.alt != '') { $('#gallery_captions').animate( { height: "26px", opacity: 0.8 }, 800 ); $('#gallery_captions').append('' + this.alt + ''); if(window.console && window.console.firebug) { console.log('Image count: ' + opts.slideCount); } } if (opts.slideCount==1) { $('#gallery').cycle('stop'); return false; } } //------ Gallery Controls $('#gallery_controls').fadeTo(0, 0.8); $('#gallery_controls').hover(function() { $(this).fadeTo('slow', 1); },function() { $(this).fadeTo('slow', 0.8); }); $('#pause').click(function() { $('#gallery').cycle('pause'); return false; }); $('#play').click(function() { $('#gallery').cycle('resume'); return false; }); $('#gallery_controls span:last').addClass('last'); //------ Remove 'loading' class from 'gallery_wrapper' when images are loaded $(window).bind("load", function() { $('#gallery_wrapper').removeClass('loading'); }); });