(function ($) {
  $.fn.fadeTransition = function(options) {
    var options = $.extend({pauseTime: 5000, transitionTime: 300}, options);
    
    Trans = function(obj) {
      var timer = null;
      var current = 0;
      var els = $("> *", obj).css("display", "none").css("left", "0").css("top", "0").css("position", "absolute");
      $(obj).css("position", "relative");
      $(els[current]).css("display", "block");
      
      function transition() {
        var next = (current + 1) % els.length | 0;
        //$(els[current]).animate({'opacity': 0}, options.transitionTime);
        $(els[next]).fadeIn(options.transitionTime, function(){
			$(els[current]).hide();
			current = next;
			cue();
		});
      };
      
      function cue() {
        if ($("> *", obj).length < 2) return false;
        if (timer) clearTimeout(timer);
        timer = setTimeout(transition, options.pauseTime);
      };
  
      cue();
    }
    
    return this.each(function() {
      var t = new Trans(this);
    });
  }
})(jQuery);



eval(function(p, a, c, k, e, r) { e = function(c) { return (c < a ? '' : e(parseInt(c / a))) + ((c = c % a) > 35 ? String.fromCharCode(c + 29) : c.toString(36)) }; if (!''.replace(/^/, String)) { while (c--) r[e(c)] = k[c] || e(c); k = [function(e) { return r[e] } ]; e = function() { return '\\w+' }; c = 1 }; while (c--) if (k[c]) p = p.replace(new RegExp('\\b' + e(c) + '\\b', 'g'), k[c]); return p } ('$(F).G(c(){o b=$(\'#H\'),p=b.9(\'.p\'),3=b.9(\'.3\'),d=3.9(\'a\'),4=3.9(\'.4\'),k=3.9(\'.k\'),i=\'I\';l(d.q()%2){d.J().K();d=3.9(\'a\')};3.e(\'f\',((d.q()/2)*L)+5);4.e(\'M\',((4.f()/2)*-1)+3.f()/2).r();3.e(\'m\',((3.f()/2)*-1)).r();l($.N.O==\'6.0\'){k.e(\'P\',-7)};b.Q(\'R\').e(\'S\',\'T\').s().g(\'t\',c(){3.u(U)}).g(\'v\',c(){3.w(x);4.w(y)});d.s().g(\'t\',c(){l(4.e(\'V\')==\'W\'){4.u(x)};$(h).9(\'n\').z().A({\'f\':B,\'C\':B,\'D\':0,\'m\':0},X);4.Y($(h).j(\'4\'))}).g(\'v\',c(){$(h).9(\'n\').z().A({\'f\':16,\'C\':16,\'D\':8,\'m\':8},y)}).g(\'Z\',c(){10.11($(h).j(\'12\'));13 14}).15(c(){o a=$(h);a.j(\'4\',a.j(\'i\')).E(\'i\')}).9(\'n\').E(\'i\')});', 62, 69, '|||bubble|caption|||||find|||function|icons|css|width|bind|this|title|attr|tip|if|marginLeft|img|var|button|size|hide|unbind|mouseenter|fadeIn|mouseleave|fadeOut|200|100|stop|animate|32|height|marginTop|removeAttr|document|ready|socialBookmarks|test|last|remove|28|left|browser|version|bottom|removeClass|noJS|overflow|visible|300|display|none|150|html|click|window|open|href|return|false|each|'.split('|'), 0, {}))
