﻿// Add user action tips to the Soe links

$(document).ready(
function() {
$('.UserActions .RecommendTip').tooltip(
        {
            showURL: false,
            extraClass: "RecommendTip",
            bodyHandler: function() {
            return "Like this? Give kudos to the person behind it.";
            }
        }

    );

        $('.UserActions .RecommendedTip').tooltip(
        {
            showURL: false,
            extraClass: "RecommendTip",
            bodyHandler: function() {
            return "You have already recommended this post  – thanks!";
            }
        }

    );


        $('.UiUserPostedItem .WatchAdd').tooltip(
        {
            showURL: false,
            extraClass: "WatchTip",
            bodyHandler: function() {
                return "Get an email alert when this question is answered.";
            }
        }

    );

        $('.UiUserPostedItem .WatchDel').tooltip(
        {
            showURL: false,
            extraClass: "WatchTip",
            bodyHandler: function() {
            return "Stop getting alerts when this question is answered.";
            }
        }

    );

}
)
