﻿function page_init() {
    setupNav();
}

function setupNav() {
    $$('.nav').each(function(item, index) {
        item.addEvent('mouseenter', function() {
            var img = item.firstChild.src.substr(0, item.firstChild.src.length - 4);
            item.firstChild.src = img + '_on.gif';
        });
        item.addEvent('mouseleave', function() {
            var img = item.firstChild.src.substr(0, item.firstChild.src.length - 7);
            item.firstChild.src = img + '.gif';
        });
    });
}
