    //<![CDATA[

      jQuery(document).ready(function() {
        // Open external links in a new window (or tab). Ignores 'www.' part
        // when determining if something is 'internal'..

        var hostname = document.location.hostname.replace('www.', '');
        var eimage = ' <img src="media/elink.gif" alt="" style="border:0;" />';
        jQuery('a').each(function(){
            var thishost = this.hostname.replace('www.', '');
            if (this.href && (thishost != hostname) && (this.protocol=='http:' || this.protocol=='https:') && (this.innerHTML.length<50) ) {
                this.target='_blank';
                this.innerHTML = this.innerHTML+eimage;
                this.title = this.title + "Klik om deze link in een nieuw venster te openen.";
            }
        });
        $(function () {
           $('#totop').click(function () {
               $('html, body').animate({scrollTop:0}, 'slow');
           });
        });
      });
    //]]>
