// JavaScript Document
$(document).ready(function(){
	$(".zoom").fadeTo("slow", 0); // This sets the opacity of the thumbs to fade down to 60% when the page loads
	$(".zoom").hover(function(){
		$(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo("slow", 0); // This should set the opacity back to 60% on mouseout
	});
	
	$(".linkmenu").hover(function() {
	  $(this).animate({height: "23px", marginTop: "44px", paddingTop: "4px", color: "#eee", backgroundColor: "#555"}, "fast");
	}, function() {
	  $(this).animate({height: "20px", marginTop: "46px", paddingTop: "4px", color: "#bbb", backgroundColor: "#444"}, "fast");
	});
	
	$(".projects").hover(function() {
	  $(this).animate({marginLeft: "8px", color: "#ffffff", backgroundColor: "#888888"}, "fast");
	}, function() {
	  $(this).animate({marginLeft: "4px",  color: "#ffffff", backgroundColor: "#999999"}, "fast");
	});
});
