/**
 * scripts.js
 *
 * Global JavaScript functions and variables for Wrestle Hustle website.
 *
 * @author Martin Bean <maritn@yourfightsite.com>
 */
$(document).ready(function() {
    $('a[rel*="external"]').click(function(e) {
        e.preventDefault();
        window.open(this.href);
    });
    $('.tabs').tabs({
        fx: {
            opacity: 'toggle'
        }
    }).tabs('rotate', 5000);
});
