Cufon.replace('h2' , {
  fontFamily: 'Maurea-Regular' ,
  hover: true
});
Cufon.replace('#mainNav ul li a:not(#mainNav ul li ul li a), input#searchBtn, #rsb div.aqua h1, .alert a, .wideCol .featured h4 a, .multiCol h1' , {
  fontFamily: 'Maurea-Bold' ,
  hover: true
});
Cufon.replace('h2, #tout_donate h1' , {
  fontFamily: 'Maurea-Regular' ,
  hover: true
});
Cufon.replace('a.tout_btn' , {
  textShadow: '1px 1px white',
  fontFamily: 'Maurea-Medium' ,
  hover: true
});
Cufon.replace('#forums a.forumbtn' , {
  textShadow: '0px -1px #882815',
  fontFamily: 'Maurea-Medium' ,
  hover: true
});
Cufon.replace('h1:not(#commentary h1, #reviews h1, .story h1, #rsb h1, #stories .featured h1), dl.smallList dt, #permalinks ul li a, .multiCol h2, #home h2, .alert h2, .moreForums h2, .hubList h2, #rsb h2, li.topicList a' , {
  fontFamily: 'Maurea-Medium' ,
  hover: true
});

/**
* hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
* 
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne <brian@cherne.net>
*/
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}if(p==this){return false;}var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);

/* Hover Intent End */

jQuery(function() {

$("#main:not(.restricted) .essay, #main:not(.restricted) .review").pagination();

  $('.hide').hide();

  //Main Navigation rollover behavior

  var listItem = $('#mainNav li.selected');

/*  $('#mainNav li:not(li li)').not('.selected').hover(
    function(){
      listItem.removeClass('selected');
    },
    function(){
      listItem.addClass('selected');
    }
    );

  $('#mainNav li ul').not('.selected ul').hover(
    function(){
      $(this).parent('li').addClass('selected');
    },
    function(){
      $(this).parent('li').removeClass('selected');
    }
    );*/

// ROLLOVER DELAY //

$('#mainNav > ul > li > ul').parent().addClass('parent_link');

$('#mainNav > ul > li > ul').addClass('submenu');

var config = {    
     over: showMenu, // function = onMouseOver callback (REQUIRED)    
     timeout: 500, // number = milliseconds delay before onMouseOut    
     out: hideMenu, // function = onMouseOut callback (REQUIRED)    
     interval: 35,
     sensitivity: 3
};

$("li.parent_link").hoverIntent( config )

function showMenu(){
		$("li.parent_link").removeClass("over");

		$(this).addClass("over");
};
function hideMenu(){
		$(this).removeClass("over");
};




  //add sticks to footer nav list
  $('#ft li:not(#ft li:last-child)').append('&nbsp;<span>|</span>&nbsp;');
   
  //add icons to restricted and journal content
  $('.restricted h1 a, .restricted h4 a, dd.restricted').append('<img class="preview" src="/sites/all//themes/mepc/images/icon-preview.png" title="<strong>Preview Content Only.</strong><br />Click to read a preview of this essay and for information on how to subscribe to Middle East Policy." width="38" height="11" />');
  $('.smallList a.restricted').append('<img class="preview" src="/sites/all//themes/mepc/images/icon-preview-sm.png" title="<strong>Preview Content Only.</strong><br />Click to read a preview of this essay and for information on how to subscribe to Middle East Policy." width="11" height="11" />');
  $('.journal h3').prepend('<img src="/sites/all//themes/mepc/images/icon-journal.png" alt="Preview" width="12" height="12" />');

  //fix hub list spacing
  $('.hubList li:nth-child(2n+1)').addClass('clear');
   
  //sharebox hover
  $('a#share, a#podcast').tooltip({
    effect: 'fade',
    position: 'bottom center',
    offset: [10, 0],
    onShow: function() {
      this.getTrigger().addClass('active');
    },
    onHide: function() {
      this.getTrigger().removeClass('active');
    }    
  });
  
  //preview content hover
  $('img.preview[title]').tooltip({
    effect: 'fade',
    position: 'bottom center',
    offset: [10, 0],
    tipClass: 'tip'
  });
  
  //Function for the font increase and font decrease buttons

  $('.text-increase').click(function(){
    if(!$(this).hasClass('text-increase-disabled')) {
      if ($('body').hasClass('textMedium')) {
        $('body').removeClass('textMedium');
        $('body').addClass('textLarge');
        $(this).removeClass('text-increase');
        $(this).addClass('text-increase-disabled');
        return false;
      }else{
        $('body').removeClass('textLarge');
        $('body').addClass('textMedium');
        $('.text-decrease-disabled').addClass('text-decrease');
        $('.text-decrease').removeClass('text-decrease-disabled');
        return false;
      }
    };
    return false
  })
  
  $('.text-decrease').click(function(){
    if(!$(this).hasClass('text-decrease-disabled')) {
      if ($('body').hasClass('textLarge')) {
        $('body').removeClass('textLarge');
        $('body').addClass('textMedium');
        $('.text-increase-disabled').addClass('text-increase');
        $('.text-increase').removeClass('text-increase-disabled');
        return false;
      }else{
        $('body').removeClass('textMedium');
        $(this).removeClass('text-decrease');
        $(this).addClass('text-decrease-disabled');
        return false;
      }
    }
    return false
  })	
   
  //pullquote function
  $('span.pullquote').each(function(index) {
    var $parentParagraph = $(this).parent('p');
    $parentParagraph.css('position', 'relative');
    $(this).clone()
    .addClass('pulledquote')
    .prependTo($parentParagraph);
  });

  //Generate Playlist for Hills Forum
  $('#playlistContainer').each(function(){
    var $this = $(this);
    //Get Current URL location
    var loc = jQuery.url.attr("path");
    var param = "format=json";

    var videoPlayList = $('.videoPlaylist');
    var videoDetails = $('.videoDetails');

    videoDetails.append('<div class="loader"><img src="/sites/all//themes/mepc/images/ajax-loader.gif" alt="loader"></div>');
    videoPlayList.append('<div class="loader"><img src="/sites/all//themes/mepc/images/ajax-loader.gif" alt="loader"></div>');

    //Get Json data from the server
    $.getJSON(loc+"?"+param, function(data){

      $f('.videoPlayer', '/sites/all//themes/mepc/swf/flowplayer.commercial-3.2.2-1.swf', {
        key: '#$f199c7c8763c7aa9273',
	clip: {
          autoPlay: true,
          autoBuffering: true,
          baseUrl: 'http://'+jQuery.url.attr("host")+'/',
          onBegin: function(clip, info){
            videoPlayList
            .find('.playing')
            .removeClass('playing')
            .find('a')
            .addClass('arrowLink')
            .text('Watch Segment');

            videoPlayList
            .find('li')
            .eq(clip.index)
            .addClass('playing')
            .find('a')
            .removeClass('arrowLink')
            .text('Now Playing');
            
            videoDetails
            .empty()
            .append('<h3>In This Segment</h3>')
            .append('<h4>'+data.videos[clip.index].title+'<h4>')
            .append('<p class="author">Part '+(clip.index+1)+' of '+data.videos.length+', '+data.videos[clip.index].duration+'</p>')
            .append(data.videos[clip.index].description);
            
            var firstItem = $('li', '#playlistContainer').eq(0);
            
            var startOffset = carouselWindow.scrollLeft();
            var endOffset = startOffset + carouselWindow.width();

            var currentItem = $('li', '#playlistContainer').eq(clip.index);
            var absCurrentLeftPos = currentItem.position().left - firstItem.position().left;

            if(absCurrentLeftPos == startOffset){
              carouselPre();
            }

            if((absCurrentLeftPos+currentItem.outerWidth()) == endOffset){
              carouselNext();
            }

          //alert('absCurrentLeftPos: '+absCurrentLeftPos+' currentItemPosRight: '+(absCurrentLeftPos+currentItem.outerWidth())+' endOffset: '+endOffset+' startOffset: '+startOffset)
          }          
        },

        onError: function(errorCode, errorMessage){
          //alert('errorCode: '+errorCode+' errorMessage: '+errorMessage);

          return false;
        },

        playlist: data.videos
      });          

      //alert(data.videos.length);

      if(parseInt(jQuery.url.attr('anchor')) > data.videos.length && parseInt(jQuery.url.attr('anchor')) < 1 ){
        //error
        videoDetails.append('<div class="errorMessage">The requested video is not available.</div>');
      }
      else{
        var videoNum = 1;

        //If anchor tag exists
        if(jQuery.url.attr('anchor')){
          videoNum = parseInt(jQuery.url.attr('anchor'));
        }

        var playListCarousel = $("<ul></ul>");
        
        for(var i=0; i<data.videos.length; i++){
          var videoSegment = $('<li></li>')
          .append('<h4>'+data.videos[i].title+'</h4>')
          .append('<p class="author">Part '+(i+1)+' of  '+data.videos.length+', '+data.videos[i].duration+'</p>')
          .append('<p>'+data.videos[i].shortDesc+'</p>')
          .append('<p><a class="arrowLink" href="#'+(i+1)+'">Watch Segment</a></p>');

          playListCarousel.append(videoSegment);
        }

        var carouselWindow = $('<div class="carouselWindow"></div>').append(playListCarousel);

        videoPlayList.append(carouselWindow);

        var itemsWidth = 0;
        var itemWidth = playListCarousel.find('li:first').outerWidth();
        
        playListCarousel.find('li').each(function(){
          itemsWidth += $(this).outerWidth();
        });

        playListCarousel.css('width', itemsWidth);
        
      }

      var prevBt = $('<a id="videoPlaylist-prev">Previous</a>');
      var nextBt = $('<a id="videoPlaylist-next">Next</a>');

      videoPlayList.after(prevBt).after(nextBt);

      if(carouselWindow.scrollLeft() == 0){
        prevBt.addClass('disabled');
      }
      
      if(carouselWindow.scrollLeft() == (playListCarousel.width()-carouselWindow.width())){
        nextBt.addClass('disabled');
      }

      function carouselNext(){
        if(playListCarousel.width() <= carouselWindow.width() || nextBt.hasClass('disabled')){
          return false;
        }

        prevBt.removeClass('disabled');

        carouselWindow.animate({
          scrollLeft: '+='+itemWidth
        }, 300, function(){
          if(carouselWindow.scrollLeft() == (playListCarousel.width()-carouselWindow.width())){
            nextBt.addClass('disabled');
          }
        });
      }

      function carouselPre(){
        if(playListCarousel.width() <= carouselWindow.width() || prevBt.hasClass('disabled')){
          return false;
        }

        nextBt.removeClass('disabled');

        carouselWindow.animate({
          scrollLeft: '-='+itemWidth
        }, 300, function(){
          if(carouselWindow.scrollLeft() == 0){
            prevBt.addClass('disabled');
          }
        });
      }

      //Attach click events to each video segments, previous and next items.
      $this.delegate('#videoPlaylist-prev', 'click', function(){        
        carouselPre();        
      }).delegate('#videoPlaylist-next', 'click', function(){        
        carouselNext();        
      }).delegate('li', 'click', function(){
        var $this = $(this);

        var videoNum = $this.find('a').attr('href');
        videoNum = parseInt(videoNum.substr(1, videoNum.length-1));

        $f().play(videoNum-1);

        var pos = $this.position();
      });

      $('.loader').remove();
    })
  });

  //dropcaps
  p1= $(".essay p:first, .review p:first");
  if(p1.length > 0){
    p1.addClass("dropcap");
    p= p1[0].textContent.replace(/^\s+/, "").replace(/^"/, "").replace(/^'/, "");
    c= p.charAt(0);
    p1.html('<span class="dropcap-'
      + c.toLowerCase()
      + '" style="background-image: url(/sites/all//themes/mepc/images/dropcaps/drop-'
      + c.toLowerCase()
      + '.png)">'
      + c
      + '</span>'
      + p.substring(1, p.length)
      );
  }

  //make moreForums li clickable and follow link within
    $(".moreForums li").click(function(){
      window.location=$(this).find("a").attr("href"); return false;
    });
  

  //sharing links
  $('#email').attr('href', 'mailto:?subject='+encodeURIComponent(document.title)+'&body='+encodeURIComponent(window.location));
  $('#digg').attr('href', 'http://digg.com/submit?url='+encodeURIComponent(window.location)+'&title='+encodeURIComponent(document.title));
  $('#delicious').click(function(){
    u=location.href;
    t=document.title;
    window.open('http://del.icio.us/post?url='+encodeURIComponent(u)+'&title='+encodeURIComponent(t)+'&jump=no&partner=delbg','delicious','toolbar=0,status=0,width=700,height=400');
    return false;
  });
  $('#facebook').attr('href', 'http://www.facebook.com/sharer.php?u='+encodeURIComponent(window.location)+'&t='+encodeURIComponent(document.title));
  $('#myspace').attr('href', "javascript:void(window.open('http://www.myspace.com/Modules/PostTo/Pages/?u='+encodeURIComponent(document.location.toString()),'ptm','height=450,width=440').focus())");
  $('#twitter').attr('href', 'http://twitter.com/home?status=Read '+encodeURIComponent(document.title)+': '+encodeURIComponent(window.location));


  $('.dropdownFilter select').change(function(){
    $('.dropdownFilter option:selected').each(function(){
      var $this = $(this);
      var parentFormEl =  $this.parents('form');
      var destination = '';

      if(parentFormEl.hasClass('regions')){
        destination = '/regions';
        if($this.attr('value') != 'ALL'){
          destination = '/regions/'+$(this).attr('value');
        }
      }
      else if(parentFormEl.hasClass('topics')){
        destination = '/topics';
        if($this.attr('value') != 'ALL'){
          destination = '/topics/'+$(this).attr('value');
        }
      }
      else if(parentFormEl.hasClass('article-date')){
        destination = '/articles-commentary/articles-hub';
        if($this.attr('value') != 'ALL'){
          destination = '/articles-commentary/articles-hub?year='+$(this).attr('value');
        }
      }
      else if(parentFormEl.hasClass('commentary-date')){
        destination = '/articles-commentary/commentary-hub';
        if($this.attr('value') != 'ALL'){
          destination = '/articles-commentary/commentary-hub?year='+$(this).attr('value');
        }
      }
      else if(parentFormEl.hasClass('journal-date')){
        destination = '/journal/middle-east-policy-archives';
        if($this.attr('value') != 'ALL'){
          destination = '/journal/middle-east-policy-archives?year='+$(this).attr('value');
        }
      }
      else if(parentFormEl.hasClass('speeches-date')){
        destination = '/articles-commentary/speeches-hub';
        if($this.attr('value') != 'ALL'){
          destination = '/articles-commentary/speeches-hub?year='+$(this).attr('value');
        }
      }
      
      window.location = destination;
    });
  });
  
  

//  $("#main .essay").pagination();
  
});

// ----------------------------------------------------------------------------
// Pagination Plugin - A jQuery Plugin to paginate content
// v 1.0 Beta
// Dual licensed under the MIT and GPL licenses.
// ----------------------------------------------------------------------------
// Copyright (C) 2010 Rohit Singh Sengar
// http://rohitsengar.cueblocks.net/
// ----------------------------------------------------------------------------
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// 
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ----------------------------------------------------------------------------

//------------ initializing all the values needed in paginator. -----------------

//--- Variables for internal use ----

var pageElement = Array();

var paginatorId = '';

var currentPage = 1; // current page, default 1

var allItems = 0; // no. of repeating items in the container where paginator is applied

var lastPage = 1; // last page, default 1

//--- Attributes that can be changed according to use ---

var startPage = 1; // start page

var itemsPerPage = 8; // no. of items you want to show on one page

var firstPageSymbol = 'First'; // to indicate First Page

var previousPageSymbol = 'Previous'; // to indicate Previous Page

var nextPageSymbol = 'Next'; // to indicate Next Page

var lastPageSymbol = 'Last'; // to indicate Last Page

var separator = ' '; // To separate paginator's items

var paginatorPosition = 'bottom'; // where you want the paginator to be. Accepted values are 'top','bottom','both'

var paginatorStyle = 3; // To define which style of paginator you need.
// 1 - for << | < | 1 | 2 | 3 | > | >>
// 2 - for << | < | 1/8 | > | >>
// 3 - for < | 1 | 2 | 3 | >
// 4 - for < | >
    
var enablePageOfOption = false; // it shows on which are you currently, i.e. Page 3 of 6 Page(s), if turned true
    
var enableGoToPage = false; // shows a drop down of all pages for go/jump to any page user want to go, if turned true. Useful incase there are large no. of pages
    
var textGoToPage = 'Go to'; // text for above option. You can change it to 'Jump to Page' or anything you like. The above option needs to turned on for this.
    
var enableSelectNoItems = false; // if you want to change items per page on the fly.
    
var textSelectNoItems = 'Items Per Page'; // text for above option. You can change it to 'Change No. of tag/page' or anything you like. The above option needs to turned on for this.

var paginatorValues = Array(5,10,15,20,25,30); // list of values for above option (enableSelectNoItems).

var anchorLink = 'javascript:void(0);'; // if you want to change href of the paginator anchor text (links for page) to '#' or to something else. As # is append on the address bar upon clicking I used javascript:void(); which is clean.
    
var showIfSinglePage = false; // set it tp false if you don't want to show paginator incase there is only one page, true if show paginator even if there is just one page.


//-----------functions starts----------------------------------------------------
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
  }('1c.1d.1e({1f:A(){j=M;R(1g){y\'1h\':{j.S(\'<m 7="u"></m>\');z}y\'1i\':{j.N(\'<m 7="u"></m>\');z}y\'1j\':{j.S(\'<m 7="u"></m>\');j.N(\'<m 7="u"></m>\');z}T:{j.N(\'<m 7="u"></m>\')}}O()},1k:A(){$(\'.u\').1l();j.B().P()}});A O(){9(n<1)n=5;J=j.B().U;9(J%n==0)q=V(J/n);v q=V(J/n)+1;9((F<1)||(F>q))F=1;9(!1m){9(q>1)r(F,1)}v r(F,1)}A r(a,b){9(a<0){9(a==-1)a=w-1;v a=w+1}w=a;G=(w-1)*n;9(!b){j.1n("W",A(){Q();j.B().X();j.B().Y(G,n+G).P();j.1o("W")})}v{Q();j.B().X();j.B().Y(G,n+G).P()}}A Q(){$(".u").Z("");t a=\'\';t b=\'\';t c=\'\';t d=\'\';t e=\' 8 \'+w+\' 10 \'+q+\' 8(s) \';t f=\' \'+1p+\' <K 11="r(M.C);" >\';t g=\' \'+1q+\' <K 11="n=1r(M.C);O();" >\';12(t i=0;i<D.U;i++){9(n==D[i])g+=\'<x C="\'+D[i]+\'" L="L">\'+D[i]+\'</x>\';v g+=\'<x C="\'+D[i]+\'">\'+D[i]+\'</x>\'}g+=\'</K>\';9(w==1){6=\'<a k="\'+l+\'" 7="o" h="13 8">\'+14+\'</a>\'+p;a=b=6;6=\'<a k="\'+l+\'" 7="o" h="15 8">\'+16+\'</a>\'+p;a+=6;b+=6;c+=6;d+=6}v{6=\'<a k="\'+l+\'" 7="H" I="r(1);" h="13 8">\'+14+\'</a>\'+p;a=b=6;6=\'<a k="\'+l+\'" 7="H" I="r(-1);" h="15 8">\'+16+\'</a>\'+p;a+=6;b+=6;c+=6;d+=6}12(t i=1;i<=q;i++){9(i==w){a+=\'<a k="\'+l+\'" 7="o" h="8 \'+i+\'">\'+i+\'</a>\'+p;b+=\'<a k="\'+l+\'" 7="o" h="8 \'+i+\'">\'+i+\'/\'+q+\'</a>\'+p;c+=\'<a k="\'+l+\'" 7="o" h="8 \'+i+\'">\'+i+\'</a>\'+p;f+=\'<x C="\'+i+\'" L="L">\'+i+\'</x>\'}v{6=\'<a k="\'+l+\'" 7="H" I="r(\'+i+\');" h="8 \'+i+\'">\'+i+\'</a>\'+p;a+=6;c+=6;f+=\'<x C="\'+i+\'">\'+i+\'</x>\'}}f+=\'</K>\';9(w==q){6=\'<a k="\'+l+\'" 7="o" h="17 8">\'+18+\'</a>\';a+=6;b+=6;c+=6;d+=6;6=p+\'<a k="\'+l+\'" 7="o" h="19 8">\'+1a+\'</a>\';a+=6;b+=6}v{6=\'<a k="\'+l+\'" 7="H" I="r(-2);" h="17 8">\'+18+\'</a>\';a+=6;b+=6;c+=6;d+=6;6=p+\'<a k="\'+l+\'" 7="H" I="r(\'+q+\');" h="19 8">\'+1a+\'</a>\';a+=6;b+=6}R(1s){y 1:6=a;z;y 2:6=b;z;y 3:6=c;z;y 4:6=d;z;T:6=a}9(1t)6+=\'<E 7="o" h="8 1u">\'+e+\'</E>\';9(1v)6+=\'<E 7="o" h="1b 8">\'+f+\'</E>\';9(1w)6+=\'<E 7="o" h="1b 1x. 10 1y 1z 1A">\'+g+\'</E>\';$(".u").Z(6)}',62,99,'||||||style|class|Page|if||||||||title||paginatorId|href|anchorLink|div|itemsPerPage|inactive|separator|lastPage|appendContent||var|paginator|else|currentPage|option|case|break|function|children|value|paginatorValues|span|startPage|till|active|onclick|allItems|select|selected|this|after|initPaginator|show|createPaginator|switch|before|default|length|parseInt|medium|hide|slice|html|of|onchange|for|First|firstPageSymbol|Previous|previousPageSymbol|Next|nextPageSymbol|Last|lastPageSymbol|Select|jQuery|fn|extend|pagination|paginatorPosition|top|bottom|both|depagination|remove|showIfSinglePage|fadeOut|fadeIn|textGoToPage|textSelectNoItems|Number|paginatorStyle|enablePageOfOption|Information|enableGoToPage|enableSelectNoItems|no|items|per|page'.split('|'),0,{}))

