﻿function gallery(ss){var current =($('.mygallery a.show')?$('.mygallery a.show'):$('.mygallery a:first'));var next =(current.next().length)?current.next():$('.mygallery a:first');next.css({opacity:0.0}).addClass('show').animate({opacity:1.0}, ss);current.animate({opacity:0.0}, ss).removeClass('show');}$.fn.extend({flash_slide:function(option){var setting={width:300,height:200,speed:2000,animate_speed:1000};if(option)$.extend(setting,option);return this.each(function(){$(this).addClass('mygallery').find('a:first').addClass('show');$(this).find('a img').css({'width':setting.width+'px','height':setting.height+'px'});$('.mygallery a').css({opacity:0.0});$('.mygallery a:first').css({opacity:1.0});setInterval('gallery('+setting.animate_speed+')',setting.speed);});}});
