﻿function initSplash(url) {
    jQuery('#employee a, #employer a').click(function (e) {
        e.preventDefault();

        var href = jQuery(this).attr('href');
        document.location.href = url + '?to=' + encodeURIComponent(href);

    });
}

