$(document).ready(function(){
         $(".thumbfade").fadeTo(200, 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
         $(".thumbfade").hover(function(){
         $(this).fadeTo(200, 1.0); // This should set the opacity to 100% on hover
         },function(){
         $(this).fadeTo(200, 0.3); // This should set the opacity back to 30% on mouseout
         });
         });

$(document).ready(function(){
         $(".logo").fadeTo(300, 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
         $(".logo").hover(function(){
         $(this).fadeTo(300, 0.3); // This should set the opacity to 100% on hover
         },function(){
         $(this).fadeTo(300, 1.0); // This should set the opacity back to 30% on mouseout
         });
         });

$(document).ready(function(){
         //$("#book").fadeTo(300, 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
         $("#book").hover(function(){
         $(this).fadeTo(500, 0.3); // This should set the opacity to 100% on hover
         },function(){
         $(this).fadeTo(300, 1.0); // This should set the opacity back to 30% on mouseout
         });
         });

$(document).ready(function(){
         $("#thumbs a").click(function() {
         var mainImage = $(this).attr("href"); //Find Image Name
         $("#main_view img").attr({ src: mainImage });
         return false;
         });
});

$(document).ready(function(){
         $("#info").hide();
         $("#menu").hide();
         $("#open").click(function() {
         $("#info").show();
         $("#menu").show();
         });
         $("#close").click(function() {
         $("#info").hide();
         $("#menu").hide();
         });
});

$(document).ready(function(){
         $(".link").hover(function(){
         $(this).animate({"color": "#ea5d0e"}, "slow");
         },function(){
         $(this).animate({"color": "#9f9f9f"}, "slow");
         });
         });

$(document).ready(function(){
         $(".linkfade").hover(function(){
         $(this).animate({"color": "#ea5d0e"}, 200);
         },function(){
         $(this).animate({"color": "#ffffff"}, 200);
         });
         });


$(document).ready(function(){
         $(".divfade").fadeTo("slow", 0.2); // This sets the opacity of the thumbs to fade down to 30% when the page loads
         $(".divfade").hover(function(){
         $(this).fadeTo("slow", 0.6); // This should set the opacity to 100% on hover
         },function(){
         $(this).fadeTo("slow", 0.2); // This should set the opacity back to 30% on mouseout
         });
         });