$(function(){

    // MENU
    var mapMenu = {
        'home'         : 'm1',
        'accommodation': 'm2',
        'chalets'      : 'm3',
        'photos'       : 'm4',
        'contact'      : 'm5',
        'billing'      : 'm6',
        'localization' : 'm7'
    };

    var currentPage = $('body').attr('id');
    $('#menu a img#'+mapMenu[currentPage]).attr('src', '/images/'+mapMenu[currentPage]+'x.gif');

    // hover
    $('#menu a img').hover(

        function() {
            var imgName = $(this).attr('id');
            if(mapMenu[currentPage] != imgName)
            {
                $(this).attr('src', '/images/'+imgName+'x.gif');
            }
        },
        function() {
            var imgName = $(this).attr('id');
            if(mapMenu[currentPage] != imgName)
            {
                $(this).attr('src', '/images/'+imgName+'.gif');
            }
        }
    );
    
    
    // ColorBox
    $('.imageModalBox').colorbox({
    	close:   'Fechar',
    	opacity: 0.7
    });
    
});
