(function ($) {
    $(document).ready(function() {
        
        var path = Drupal.settings.basepath;
        
        var imgpath = path + "sites/all/themes/everypace/images/";
    
        $('#block-system-main-menu .content ul li:nth-child(1) a').html('<img src="' + imgpath + 'Nav_Everypace_off.png" alt="Home" class="nav_off" id="ev_off" /><img src="' + imgpath + 'Nav_Everypace_on.png" alt="Home" class="nav_on" id="ev_on">');
        $('#block-system-main-menu .content ul li:nth-child(2) a').html('<img src="' + imgpath + 'Nav_Blog_off.png" alt="Blog" class="nav_off" id="bl_off" /><img src="' + imgpath + 'Nav_Blog_on.png" alt="Blog" class="nav_on" id="bl_on">');
        $('#block-system-main-menu .content ul li:nth-child(3) a').html('<img src="' + imgpath + 'Nav_Media_off.png" alt="Media" class="nav_off" id="me_off" /><img src="' + imgpath + 'Nav_Media_on.png" alt="Calendar" class="nav_on" id="me_on">');
        $('#block-system-main-menu .content ul li:nth-child(4) a').html('<img src="' + imgpath + 'Nav_Calendar_off.png" alt="Calendar" class="nav_off" id="ca_off" /><img src="' + imgpath + 'Nav_Calendar_on.png" alt="Calendar" class="nav_on" id="ca_on">');
        $('#block-system-main-menu .content ul li:nth-child(5) a').html('<img src="' + imgpath + 'Nav_Contact_off.png" alt="Contact" class="nav_off" id="co_off" /><img src="' + imgpath + 'Nav_Contact_on.png" alt="Contact" class="nav_on" id="co_on">');
        $('#sign-out a:nth-child(1)').html('<img src="' + imgpath + 'Nav_SignOut_off.png" alt="Sign Out" class="nav_off" id="so_off" /><img src="' + imgpath + 'Nav_SignOut_on.png" alt="Sign Out" class="nav_on" id="so_on">');
        $('#sign-in a').html('<img src="' + imgpath + 'Nav_SignIn_off.png" alt="Sign In" class="nav_off" id="si_off" /><img src="' + imgpath + 'Nav_SignIn_on.png" alt="Sign In" class="nav_on" id="si_on">');
        
        $('#block-system-main-menu .content ul li a:not(.active), .sign-in-out a').hover(function() {
            $(this).find('.nav_on').show();
        }, function() {
            $(this).find('.nav_on').hide();
        });
        
        $('.front .service-links').insertBefore('#front-share a');
        
        $('#front-share').hover(function() {
            $('.service-links').stop(true, true).fadeIn();
        }, function() {
            $('.service-links').stop(true, true).fadeOut();
        });
            
    });
})(jQuery);;

