function show_hover(img_id){
	document.getElementById("hover_div_"+img_id).style.display = "block";
}
function show_normal(img_id){
	document.getElementById("hover_div_"+img_id).style.display = "none";
}

