// <![CDATA[
  $(document).ready(
    function(){	
		
      init("#image");
    }
  );
  
  function init(target){
    $('a').each(
      function() {
        if(this.getAttribute('href') &&
          (this.getAttribute('rel') == 'pagination')) {
          this.onclick = function(){
            
				varhref = this.href;
				vartitle = this.getAttribute("title");
				
				$("#image_inner").fadeTo(750, .1, function() {
						$("#image").html('<img src="' + varhref + '" alt="' + vartitle + '" title="' + vartitle + '" />')
				}).fadeTo(750, 1);					
							   
				$("#image_text").html(this.getAttribute("title"));	
						   
            return false;
          }
        }
      }
    );
  }
// ]]>
