/* Local jQuery initiation */

var j$ = jQuery.noConflict();
j$(document).ready(function(){
    /* Tab show/hide behaviours */
    j$("div.showhide,.box h2").hide();
    j$("#rgtabs705").tabs();
    j$("#rgtabs706").tabs();

    /* Accordion behaviours */
    j$("#jsaccordian1061").accordion({ collapsible: true, active: false, autoHeight: false });
    j$("#jsaccordian1062").accordion({ collapsible: true, active: false, autoHeight: false });

    /* Global handling of external links */
    j$('a').filter(function(){return(new RegExp('http:\/\/(?!' + location.hostname + ')')).test(this.href);})
        .each(function(){
            if (!this.title) {
                this.title = 'External link to ' + this.hostname;
            }
            this.title = this.title + '. Opens in a new browser window';
        })
        .click(function(){
            window.open(this.href);
            return false;
    });
});


