// JavaScript Document


	
$(document).ready(function(){/////////////// onload ////////////

$.ajax({
	url: "banner.htm",
	cache: false,
	success: function(html){
	$("#dataGrid").append(html);
  }
});	
$.ajax({
	url: "random/randex.php",
	cache: false,
	success: function(html){
	$("#randomGrid").append(html);
  }
});

$("#users").click(function(){
					  
	 document.getElementById("dataGrid").innerHTML = "";
   
	$.ajax({ 		   
		   url: "formze.php", cache: false, success: function(html){ $("#dataGrid").append(html);  } });
document.title='Updates';
});
$("#kontakt").click(function(){
						  
	 document.getElementById("dataGrid").innerHTML = "";

				   
	$.ajax({ url: "anfrage.htm", cache: false, success: function(html){ $("#dataGrid").append(html);  } });
document.title='Anfrage';
});

// for services clicked
$("#tcusers").click(function(){
							  
	 document.getElementById("dataGrid").innerHTML = "";
				   
	$.ajax({ url: "register.php", cache: false, success: function(html){ $("#dataGrid").append(html);  } });
	document.title='Registrieren';	
		
});
});





