/*--[ MAIN Menu Scripts ]----------------------------------------------------------*/

// Execute when the DOM is ready
$( function() {
    $('#MainMenu > li').each( function(index) {
        $(this).addClass('img' + (index + 1));
    } ); 
    $('#MainMenu > li > a').each( function(index) {
        var newimg = $('<img src="/app/templaterepository/elexpertise_home/images/m' + (index + 1) + '.gif" />');
        newimg.hover(
             function() { 
                $(this).attr('src', '/app/templaterepository/elexpertise_home/images/over_m' + (index + 1) + '.gif');
                }
            ,function() {
                $(this).attr('src', '/app/templaterepository/elexpertise_home/images/m' + (index + 1) + '.gif');
            }
        );
        $(this).empty();
        $(this).append(newimg);
    } );
} );