﻿/*
 * Navigation.js
 * version 1.0
 * Tom McFarlin / July 2007
 *
 * Provides slight animation for the currently active link
 * on the page for which this script is loaded.
 */

Event.observe(window, 'load', function(evt) {
    
    /* active link event handler */
    new Effect.Move($('active'), {
        x: 15,
        y: 0,
        mode: 'relative'
    });
    
});
