/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

        window.addEvent('domready', function() {

            //milkbox = new Milkbox();

            $$('.menuImg').each( function ( element ) {

                element.addEvent( 'mouseover', function ( e ) {

                    element.src = '/css/images/menuOn/' + element.id + 'on' + '.jpg';


                } );

                element.addEvent ( 'mouseout', function ( e ) {

                    element.src = '/css/images/menu/' + element.id + '.jpg';

                } );

            } )

        });




