head_item_img();
function head_item_img(){
	xmlhttp = createHttpRequest();
	if(xmlhttp){
		xmlhttp.onreadystatechange = check;
		xmlhttp.open("get","head_item_img.php",true);
		xmlhttp.send(null);
	}
}
function check(){
	if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
		if(document.getElementById("head_item_img")){
			document.getElementById("head_item_img").innerHTML = xmlhttp.responseText;
		}
	}
}
function createHttpRequest(){
	var httpObject = null;
	try{
		httpObject = new XMLHttpRequest();
	}catch(e){
		try{
			httpObject = new ActiveXObject("Msxml2.XMLHTTP");
		}catch(e){
			try{
				httpObject = new ActiveXObject("Microsoft.XMLHTTP");
			}catch(e){
				return null;
			}
		}
	}
	return httpObject;
}

