// JavaScript Document
$(document).ready(function() {
$(".hideMePlease").hide(); // hide divs inside initially
$('.desc').css({opacity: 0});



// hover for project thumbnails -->
$(".desc").hover( 
function() {
$(this).stop().animate({"opacity": "0.90"}, "normal");
},
function() {
$(this).stop().animate({"opacity": "0"}, "normal");
});


}); 
