// JavaScript Document
var headerFile = '/common/html/header_en.html';


function headerLoad() {
    new Ajax.Request(headerFile , {
    method: 'get', onComplete: displayData });
    function displayData(responseHttpObj){
		var text = responseHttpObj.responseText;
		$("header").innerHTML = text;
    }
}

headerLoad();

