$(document).ready(function(){
    
    // Disable caching of ajax requests
    $.ajaxSetup ({  
        cache: false
    });
    
    
    // Functions to show oras intro on frontpage
    showIntro();
    $("body").mousemove(function(e){
        clearTimeoutID = window.setTimeout(hideIntro, 7000);
    });
    
    function showIntro() {
        $("#frontpage #projects .project").children().hide();
        $('#frontpage #intro').show();
    }
    
    function hideIntro() {
        $('#frontpage #intro').fadeOut().remove();
        $("#frontpage #projects .project").children().fadeIn();
        window.clearTimeout(clearTimeoutID);
    }

});
