$(document).ready(function(){

    // SUB MENU ACTIVE LINKS

    $('#sidebar ul li a').each(function(i){
        var current = window.location;
        var link = $(this).attr('href');
        var regex1 = new RegExp(link + '/?$');
        var regex2 = new RegExp(link + '/?#[^/]*$');
        if (regex1.test(current) || regex2.test(current)) {
            $(this).addClass('active');
        }
    });

    // SIDEBAR HEIGHT

    var contentHeight = $('#main-content').height();
    var sidebarHeight = $('#sidebar').height();

    if( contentHeight > sidebarHeight ) {
        $('#sidebar').height(contentHeight);
    }

    $('#gradient').css('bottom', '0');

    // LINK TARGETS

    $('a').each(function(i){
        var url = $(this).attr('href');
        if (!/visageinfo\.com/.test(url) && /^http:\/\//.test(url)) {
            // If link contains visageinfo.com OR it does not start with http, then
            // it's an internal link. 
            $(this).attr('target', '_blank');
        }
    });

    // QUOTES

    var quote = $('#quote q').html();
    var author = $('#quote .quotescollection_author').html();
    var source = $('#quote .quotescollection_source').html();

    $('#quote-home-text span').html(quote);
    $('#quote-home-author').html(author + ', ' + source);
    
    $('#quote-side-text').html(quote);
    $('#quote-side-author1').html('&ndash; ' + author);
    $('#quote-side-author2').html(source);

    // SOFTWARE GALLERIES

    $('a.facebox').facebox();

    // CONTACT FORM REDIRECT

    if ($('.wpcf7-response-output').html() == 'Your message was sent successfully. Thanks.') {
        window.location = '/contact/thank-you';
    } 

});

