 $(document).ready(function(){ 
   $("#all a").click(function(){ 
   	$(".estuff").slideUp("slow");
   var which = $(this).attr('title');
   $(".stuff").each(function() {
   	if ($(this).attr('title') == which)
	{
	if($(this).is(":hidden"))
	{
	$(this).animate({
					opacity:"1",
					width:"82%"}, 250);
	
	} 
	} else {
	$(this).hide();
	}
	});
    return false;
   }); 
 }); 
