thrive.init.ready(function() {
	if (document.all&&document.getElementById) {
		$('.menuItem').each(
			function(index,menuItem){
				menuItem.onmouseover=function() {
					this.className+=" over";
				}
				menuItem.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		)
		$('.subMenuItem').each(
			function(index,menuItem){
				menuItem.onmouseover=function() {
					this.className+=" overSubSub";
				}
				menuItem.onmouseout=function() {
					this.className=this.className.replace(" overSubSub", "");
				}
			}
		)
	}
});

