$(document).ready(function () {

	//KONTAKT
	$('#sendMsg').click( function(t){
	var type = "kontakt";
		//$.post("/ajax.php?id="+type, { func: "sendMsg" },
		$.post("/ajax.php?id="+type, { func: "sendMsg", firma:$('#firma').val(), name:$('#name').val(), email:$('#email').val(), telefon:$('#telefon').val(), nachricht:$('#msg').val() },
		function(data){
			if(data.trace){ alert(data.trace)};
			if(data.success){
				$('#sendMsg').after('Danke!');
				$('#sendMsg').remove();
			}else{
				$('#sendMsg').html('erneut senden');
			}
			if(data.msg){
				if($('.respondMsg').length){
					$('.respondMsg').html(data.msg);
				}else{
					$('hr:first').after('<div class="respondMsg">'+data.msg+'</div>');
				}
			};
		}, "json");
		return false;
	});

		
});