// ROLL OVER GLOBALNAV

$(document).ready(function(){

$("#mod-nav img,#area-splash h2 img").fadeTo(0,1.0);

$("#mod-nav img,#area-splash h2 img").hover(function(){

        $(this).fadeTo(200,0.7);

    },

    function(){

        $(this).fadeTo(200,1.0);

    });

});


