
$(document).ready(function(){
$("img.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
//
//
//$("body").mousemove(function(event) {

//  $("img.a").fadeToggle("3000");

//});


});


$(document).ready(function () {

    //Append a div with hover class to all the LI
    $('#navMenu li').append('<div class="hover"></div>');


    $('#navMenu li').hover(

        //Mouseover, fadeIn the hidden hover class
        function() {

            $(this).children('div').fadeIn('1000');

        },

        //Mouseout, fadeOut the hover class
        function() {

            $(this).children('div').fadeOut('1000');

    }).click (function () {

        //Add selected class if user clicked on it
        $(this).addClass('selected');

    });

});





