
	$(document).ready(function(){
	
			$(".post").mouseenter(function(){
				
				$(".thumbnail", this).stop().animate( { opacity : 0.3 }, 300);	
				$(this).addClass("box-shadow");

			}).mouseleave(function(){
			
				$(".thumbnail", this).stop().animate( { opacity : 0.1 }, 300);			
				$(this).removeClass("box-shadow");				
			
			});
			
			$("#page-thumbnail img").mouseenter(function(){
			
				$(this).animate( { opacity: 1 }, 1000);
			
			}).mouseleave(function(){
			
				$(this).animate( { opacity: 0.3 }, 500);
			
			});
			
			$("a.see-more").click(function(){
			
				$(this).parents(".project").children(".more-images").show();
				return false;
				$(this).fadeOut();
			
			});
			
		});
		
