function setMenuRolovers(){
	/**
	 * For IE, since it does not support :hover on divs
	 */

	var menu = document.getElementById('menu');
	var menuButtons = menu.getElementsByTagName('div');
	for(var i = 0; i < menuButtons.length; i++){
		if(menuButtons[i].className == 'menuButton'){
			menuButtons[i].onmouseover = function(){this.style.backgroundColor='#99B4FF';};
			menuButtons[i].onmouseout = function(){this.style.backgroundColor='#0045FF';};
		}
	}
}
