﻿// generic scripts for Aquafresh.com

var AquafreshApp = {

    GetDocumentTitle: function() {
        if (document.title != null && document.title != "") {
            return document.title;
        }

        return "Aquafresh.com";
    },

    init: function() {
        //  Bind actions to the share control

        $("#share").click(function(event) {
            event.preventDefault();
            $(".shareThisContainer").show();
        });

        $(".shareThisCloseWin").click(function(event) {
            event.preventDefault();
            $(".shareThisContainer").hide();
        });

        return;
    }
};

$(document).ready(function() {
    AquafreshApp.init();
});

function IE6Load() {
    //$(".shareThisContainer").show();
    //$(".shareThisContainer").hide();
}

