﻿    contact_address=('letstalk@' + 'etaildetail' + '.co.uk')
    mailout=('<a href="mailto:' + contact_address + '">' + contact_address + '</a>');


 ( function( $ ) {
        //allows us to use the compressed version of interface.js
        $.dequeue = function( a , b ){
                return $(a).dequeue(b);
        };

 })( jQuery ); 
 
 $(document).ready(function() {
   $('a[@href*=#]').click(function() {
     if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
       && location.hostname == this.hostname) {
        var $target = $(this.hash);
        $target = $target.length && $target || $('[@name=' + this.hash.slice(1) +']');
        if ($target.length) {
            $target.ScrollTo(400);
            return false;
        }
     };
   });
 });

