$(document).ready(function(){

    // =========================================================================
    // Confirm Delete
    // =========================================================================

    $('.row_delete').click(function(){

        if (confirm('Are you sure?')) {
            return true;
        };

        return false;
    });
    
    // Track outbound links using google analytics
    // All outbound links need re="exernal" setting
    $("a[rel*='external']").click(function(){
      pageTracker._trackPageview('/outgoing/' + $(this).attr('href'));
    });
});