function menuOver(){
			var table = document.getElementById('menu');
			var rows = table.getElementsByTagName('div');
			
			for(i=0; i<rows.length; i++){
				var currentItem = rows[i];
				
					if(currentItem.className == 'link'){
					currentItem.onmouseover = function(){this.style.backgroundColor = '#e3e3e3';}
					currentItem.onmouseout = function(){this.style.backgroundColor = 'transparent'; }
					}
					
					if(currentItem.className == 'rev_link'){
					currentItem.onmouseover = function(){this.style.backgroundColor = '#252525';}
					currentItem.onmouseout = function(){this.style.backgroundColor = 'transparent'; }
					}
			}
			
		}