codice:
$(document).ready(function ()
		{
		    //Hide (Collapse) the toggle containers on load
		    $("#workExtend").hide();
		    

			$(".thumbContainer>a").click(function ()
			{
				$("#workContainer>div").hide();
				$("#workExtend").show("slow");
				$("#workContainer>div").filter(this.hash).slideToggle("slow");
				
			});
			$("#close-project a").click(function()
			{
				$("#workExtend").hide("slow");
			});
		});