$(document).ready(function() {	

	$(".details #1").hide();
	$(".project-image #1 img").hide();
	$(".details div").hide();
	$(".details div#0").show();
	$(".project-name a").click(function(e){
		e.preventDefault()
		var project = $(this).attr("href");
		$(".details div").hide();
		$(".details "+project).show();
		$(".project-image img").hide();
		$(".project-image "+project+" img").show();
		
		$(".project-name a").removeClass("selected");
		$(this).addClass("selected");
		
	});

	$("a .projects .thumb").hover(function(){
		$(this).animate({
			opacity: 0.8
		});
	}, function() {
		$(this).animate({
			opacity: 1
		});
	});
	
	
	

});
