jQuery(document).ready(function() {
    jQuery('#container').delegate('a', 'click', function(event) {
        var host = window.location.hostname.replace(/^www\./, '');
        var a = new RegExp(host);
        if(!a.test(this.href)) {
            event.preventDefault();
            event.stopPropagation();
            window.open(this.href, '_blank');
        }
    });
    jQuery('#portfolio-tabs').tabs({
        selected: 2
    });
    jQuery('.colorbox a').colorbox({
        rel: jQuery(this).attr('rel'),
        maxHeight: '95%'
    });
});
