		$(function(){
		  $(".toggle").click(function(){ 
		    // hides matched elements if shown, shows if hidden
				$(this).parent().children(".content").toggle("fast",function(){
					var parentName = $(this).parent().attr("id");
	
					if ($(this).parent().attr("id")=="proposals") {
						$("#portfolio").children(".content").hide("fast",function(){});
					} else {
						$("#proposals").children(".content").hide("fast",function(){});
					}
						
				});
		  }); //end click function
		});


		function showItem(itemName){
			$("#closer").show();
			$("#item_display").show();
			$("#item_display_bg").show();
			$(".overflow").html("");
			$(".overflow").load("/files/" + itemName + ".html");
			$("#overlay").show();
		}
		function hideItem(){
			$("#closer").hide();
			$("#item_display").hide();
			$("#item_display_bg").hide();
			$(".overflow").html("");
			$("#overlay").hide();
		}		
