addOnloadEvent(set_headerFooter); 

function set_headerFooter(){

	$.ajax({
		url: WWW2_URL +"tpl/header.html",
		success: function(msg,textStatus){ 
			$("DIV#head").append(msg);; 
		}
	});
	$.ajax({
		url: WWW2_URL + "tpl/footer.php",
		success: function(msg,textStatus){ 
			$("DIV#foot").append(msg);; 
		}
	});
}
