ieHover_main = function() {
	var langItems = document.getElementById('top-menu').getElementsByTagName("li");
	for (var i=0; i<langItems.length; i++) {
		if(langItems[i].className == "parent star") {
			langItems[i].onmouseover=function() {this.className += " over"; }
			langItems[i].onmouseout=function() {this.className = "parent star"; }
		}
	}
}
if(window.attachEvent)window.attachEvent('onload', ieHover_main)
