/**
 * Javascript file include for the tour
 */

function goToSignup(NATS) { location.href="https://join.jessejane.com/signup/signup.php" + NATS; }

// Timed close menus 
var menuTimer;

function timedSwitch() { 
menuTimer = setTimeout("closeMenus()", 300); 
}

function closeMenus() {
document.getElementById('personalLib').className = 'hide';
}

function cancelHide() { clearTimeout(menuTimer); }


// Class switcher
function switcher(divID, classSwitch) { document.getElementById(divID).className = classSwitch; }

// Delay redirect
function delayer(){
    window.location = "http://www.digitalplayground.com/store/search.php?keyword=jesse+jane&type=all";
}
