$(document).ready(function(){
	$("h3.home").click(function(){
			$("#news").hide("normal");
			$("#wine").hide("normal");
			$("#aboutus").hide("normal");
			$("#pictures").hide("normal");
			$("#home").slideToggle("normal");
			});
	$("h3.wine").click(function(){
			$("#home").hide("normal");
			$("#news").hide("normal");
			$("#aboutus").hide("normal");
			$("#pictures").hide("normal");
			$("#wine").slideToggle("normal");
			});
	$("h3.aboutus").click(function(){
			$("#home").hide("normal");
			$("#wine").hide("normal");
			$("#news").hide("normal");
			$("#pictures").hide("normal");
			$("#aboutus").slideToggle("normal");
			});
	$("h3.pictures").click(function(){
			$("#home").hide("normal");
			$("#wine").hide("normal");
			$("#aboutus").hide("normal");	
			$("#news").hide("normal");
			$("#pictures").slideToggle("normal");
			
			});
	$("h3.news").click(function(){
			$("#home").hide("normal");
			$("#wine").hide("normal");
			$("#aboutus").hide("normal");
			$("#pictures").hide("normal");
			$("#news").slideToggle("normal");
			});
});