// <![CDATA[
 
   $(document).ready(
 
   function(){
 
 init("#image");
 
 }
 
 );
 
function init(target){
 
 $('a').each(
 
  function() {
 
  if(this.getAttribute('href') &&
 
 (this.getAttribute('rel') == 'pagination')) {
 
  this.onclick = function(){
      
 
var nimg = this.href.substr(0, this.href.length - 4) + '_small.jpg';
$(target).html('<a href="' + this.href + '" class="thickbox"><img border="0" src="' + nimg +
 
 '" alt="' + this.getAttribute("title") +
 
'" title="' + this.getAttribute("title") +
 
  '" width="180" height="180" /></a>');
 
 
 
tb_init('a.thickbox, area.thickbox, input.thickbox');
 
return false;
 
}
 
}
 
}
 
);
 
}