
// Does Font Replacements
Cufon.replace("#topText", {fontFamily: 'Tekton-Bold'});
Cufon.replace("#instructions div", { fontFamily: 'Tekton-Bold' });
Cufon.replace("#instructions #header", { fontFamily: 'Lithos Pro' });
Cufon.replace("footer", { fontFamily: 'Tekton-Bold' });

// Hides the address bar
setTimeout(function() {
    window.scrollTo(0, 1)
}, 100);

$(document).ready(function() {
    $("#deviceListPanel").hide();
});

function showDeviceList() {
    $("#deviceListPanel").slideToggle();
}
