// JavaScript Document
 function fill(page){
		$('#servicediv').html("loading...");
		var code=Math.floor(Math.random()*11)
		$.ajax({
				type: "GET",
				url: "/services/" + page +".php?code=" + code,
				dataType: "html",
				success: function(html) {
					$('#servicediv').html(html);
						
							
		
				}
			});


}
