/* Toggles Live chat on if JS is turned on, if JS is off Live chat stays invisible */
$(document).ready(function(){
    $(".livechatWrapper").toggle();
    $(".livechatMenu").toggle();
});