$(function() {
	
	//hide the project descriptions
	$(".pdesc").hide();
   
    //fade out/in the project pictures
    $("img").fadeTo(0, .9).hover(
		function () {
			$(this).fadeTo(0, 1);
    	}, 
    	function () {
        	$(this).fadeTo(0, .9);
    	}
    );

    //click the image, slide the descriptions in and out
	$("ul").find("img").click(function() {
    	$(this).nextAll().slideToggle();
   	});
   	
   	//click the "more" link, slide the descriptions in and out
   	$("ul").find(".more").click(function() {
		$(this).parent().slideToggle().next().slideToggle();
   	});	
  
 });		
