$(document).ready(function() {
	var btnCheck = news;
	alert("test");
	$("#content").hide();
	$.post("includes/"+btnCheck+".html", function(data){
				if(data.length >0) {
					//$('#suggestions').show();
					$("#content").html(data)
					$("#content").fadeIn("slow")
					
        return false; 
				}else{alert("nix drin")}
	});
	
	$(".navi a").click(function(){
			btnCheck = $(this).attr("name");
			$.post("includes/"+btnCheck+".html", function(data){
				if(data.length >0) {
					//$('#suggestions').show();
					$("#content").html(data)
					$("#content").fadeIn("slow")
					
       
				}else{alert("nix drin")}
	}); return false; 
								
			});


   
});
	 
