$(document).ready(function () {
    //login button hookups
    $("#signOutLink").click(function (e) {
        
        $.post("/_layouts/lrmscartapi.asmx/Logout", {},
        function (data) {
          location.href = location.protocol+"//"+location.host;
        });
    });

});


