﻿var BCPowderApp = {
    GetDocumentTitle: function() {
        if (document.title != null && document.title != "")
            return document.title;

        return "BCPowder.com";
    }
};

$(".btnShareThis").ready(function() {
    $(".btnShareThis").click(function(evt) {
        $(".shareThisContainer").css("top", evt.pageY + 20);
        $(".shareThisContainer").css("left", evt.pageX - ($(".shareThisContainer").css("width").replace("px","")/2));
        $(".shareThisContainer").show();
        $(".shareThisCloseWin").click(function(evt) {
            evt.preventDefault();
            $(this).unbind('click');
            $(".shareThisContainer").hide();
        });
    });
});



