$(function() {
/* interactive map */   
    $('#map_home').find('#location_1, #location_2').fadeTo(500, .3).end()
                  .find('#spot_1, #location_1').hover(function() {
                      $(this).parent().find('#spot_1, #location_1').stop().fadeTo(300, 1);    
                  }, function() {
                      $(this).parent().find('#spot_1, #location_1').fadeTo(300, .3);
                  }).end()
                  .find('#spot_2, #location_2').hover(function() {
                      $(this).parent().find('#spot_2, #location_2').stop().fadeTo(300, 1);    
                  }, function() {
                      $(this).parent().find('#spot_2, #location_2').fadeTo(300, .3);
                  });
                  
/* dropdown menu */                  
    $('#nav li').hover(function(){
        $(this).addClass('hover');
        $('ul:first', this).css('visibility', 'visible');
    }, function(){
        $(this).removeClass('hover');
        $('ul:first', this).css('visibility', 'hidden');
    });
    
    
/* menu styling adjestment */
    $('#nav > ul > li:last').find('ul:first').css({'left': 'auto', 'right': '0', 'width': '160px'})
                            .find('a').css({'width': '140px'});
                            
    $('ul.submenu').find('li:last a').addClass('noborder');
    
});
