		// Show Hide
			$("#bar").toggle(  
				function() {  
					$("#art1").show("blind", { direction: "horizontal" }, 1000);  
				},  
				function() {  
					$("#art1").hide("blind", { direction: "horizontal" }, 1000);  
				}  
			);
