$(document).ready(function(){
$(".hover img").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 100% when the page loads

$(".hover img").hover(function(){
$(this).fadeTo(400, .4); // This should set the opacity to 40% on hover
},function(){
$(this).fadeTo(400, 1.0); // This should set the opacity back to 100% on mouseout
}); });

$(document).ready(function(){
$("#nav li").hover(function(){
$(this).animate({left:'+=20'});
}, function(){
$(this).animate({left:'-40'});								
});});
