/***************************************
 * (c)ウェブシステムズ
 * http://www.websystems.jp/
 ***************************************/

(function(){
	jQuery.fn.photoFx = function(holder){
		var $holder = $(holder);
		var progress = false;

		this.each(function(){
			$(this).click(function(){
				doFx($(this));
			});
		});

		function doFx(o) {
			if (!progress && $holder.attr('src') != o.attr('src')) {
				progress = true;
				$holder.fadeOut(300, function(){
					$holder.attr('src', o.attr('src')).fadeIn(300, function(){
						progress = false;
					});
				});
			}
		}
		return this;
	}
})(jQuery);
