// JavaScript Document
    $(document).ready(function() {
        var hide = false;
        $(".hoverlink").hover(function(){
            if (hide) clearTimeout(hide);
            $("#explain1").fadeIn();
        }, function() {
            hide = setTimeout(function() {$("#explain1").fadeOut("slow"); }, 150);
        });
        $("#explain1").hover(function(){
            if (hide) clearTimeout(hide);
        }, function() {
            hide = setTimeout(function() {$("#explain1").fadeOut("slow");}, 150);
        });
		
    });


    $(document).ready(function() {
        var hide = false;
        $(".hoverlink2").hover(function(){
            if (hide) clearTimeout(hide);
            $("#explain2").fadeIn();
        }, function() {
            hide = setTimeout(function() {$("#explain2").fadeOut("slow");}, 150);
        });
        $("#explain2").hover(function(){
            if (hide) clearTimeout(hide);
        }, function() {
            hide = setTimeout(function() {$("#explain2").fadeOut("slow");},150);
		});
		
    });


    $(document).ready(function() {
        var hide = false;
        $(".hoverlink3").hover(function(){
            if (hide) clearTimeout(hide);
            $("#explain3").fadeIn();
        }, function() {
            hide = setTimeout(function() {$("#explain3").fadeOut("slow");}, 150);
        });
        $("#explain3").hover(function(){
            if (hide) clearTimeout(hide);
        }, function() {
            hide = setTimeout(function() {$("#explain3").fadeOut("slow");}, 150);
        });
		
    });

