﻿$('document').ready(
    function() {
        backURL = 'http://' + location.hostname + '/images/bkBtnMenu.jpg';
        var idAux;
        var wAux;
        var hAux;
        $('#menu span').each(
            function(index) {
                if (($(this).attr('id') != 'm06') && ($(this).attr('class') != 'clear')) {
                    $(this).hover(
                        function() {
                            
                            idAux = $(this).attr('id');
                            wAux = $(this).width();
                            hAux = $(this).height();
                            $(this).attr('id', 'aux').css('width', wAux).css('height', hAux);
                            $(this).find('a').css('color', 'White')
                        },
                        function() {
                            $(this).attr('id', idAux);
                            $(this).find('a').css('color', '#002469')
                        }
                    );

                }
            }
        );
    }
)
