﻿$(document).ready(function () {
    $('.activateChildLink')
        .click(function (e) {

            if ($(e.target).attr('href') == undefined) {
                var childLink = $(this).children('a');
                if (childLink.attr('target') == '_blank') {
                    window.open(childLink.attr('href'));
                }
                else {
                    window.document.location = childLink.attr('href');
                }
            }
        })
});
