In my example i want the divs fade in or out the problem is if i add .fadeIn(2000) or .fadeIn(slow) to the elements it doesnt work. How can somebody help me with this
http://jsfiddle.net/slider2nl/aCdRW/3/
var currPage = 'main';
function showPage(id) {
if (currPage !== null) {
document.getElementById(currPage).style.display = 'none';
}
currPage = id;
document.getElementById(currPage).style.display = 'block';
}
var lastMove = new Date().getTime();
document.onmousemove = function() {
lastMove = new Date().getTime();
}
setInterval(function() {
var now = new Date().getTime();
if (now - lastMove > 10000) {
showPage('main');
}
}, 1000);