/*
 * Copyright (C) 2004 Stephen Ostermiller
 * http://ostermiller.org/contact.pl?regarding=Bookmarklets
 *
 * This bookmarklet is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This bookmarklet is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */
 
/**
 * Go to the cache of the current page on the Coral network of cache servers.
 * 
 * <a href="http://www.scs.cs.nyu.edu/coral/">The Coral Distribution Network</a>
 * is a peer to peer cache network organized by New York University.
 *
 * @name Coral Cache
 *
 * @compatible Firefox
 * @compatible Netscape
 * @compatible Opera
 * @compatible Internet Explorer
 * @compatible Mozilla
 * @notcompatible Konqueror
 * @compatible Safari
 *
 * @category Cache
 *
 * @keyword coral cache bookmarklet
 */
  
void(
    (function(){
        location.href=location.href.replace(
            /^http\:\/\/([^\/\@]+)\/(?:)/,
            "http://"+"$1".replace("\:",".")+".nyud.net:8080/"
        );
    })()
)
