$(function(){
	var tags=document.getElementsByTagName("em");
	for(var i=0;i<tags.length;i++){
		tags[i].onmouseover=function(){
			this.className="over";
		}
		tags[i].onmouseout=function(){
			this.className="out";
		}
	}
});