// JavaScript Document /* function init() { if(document.getElementById('logo')) { document.getElementById('logo').onmouseover = function() { document.getElementById('link_a').className = 'hover'; } document.getElementById('logo').onmouseout = function() { document.getElementById('link_a').className = ''; } } } window.onload = function() { init(); } */