
$(document).ready(function(){


$("a:not(#mainmenu a, .buttonlink, .bullet, #footer a, .submenu a)").hover(function() {
$(this).animate({ color: "#8c837c" }, 400);
},function() {
$(this).animate({ color: "#3d4b23" }, 400);
});


$("#footer a").hover(function() {
$(this).animate({ color: "#8c837c" }, 400);
},function() {
$(this).animate({ color: "#65734c" }, 400);
});


/* main menu background color hover */

$("#mainmenu li:not(.estates #mainmenuestates, .nicklausnorth #mainmenunicklausnorth, .whistlerliving #mainmenuwhistlerliving, .news #mainmenunews, .developer #mainmenudeveloper, .contactus #mainmenucontactus)").hover(function() {
$(this).animate({ backgroundColor: "rgba(160,166,150,0.3)" }, 400);
},function() {
$(this).animate({ backgroundColor: "rgba(234,237,237,0)" }, 400);
});




/* main menu link text color hover */

$("#mainmenu li a:not(.estates #mainmenuestates a, .nicklausnorth #mainmenunicklausnorth a, .whistlerliving #mainmenuwhistlerliving a, .news #mainmenunews a, .developer #mainmenudeveloper a, .contactus #mainmenucontactus a)").hover(function() {
$(this).animate({ color: "#646f4f" }, 400);
},function() {
$(this).animate({ color: "#3D4B23" }, 400);
});






/* submenu link background color hover */


$(".submenu li:not(#estatesoverview #submenuestatesoverview, #promo #submenupromo, #location #submenulocation, #siteplan #submenusiteplan, #nicknorthoverview #submenunicknorthoverview, #nicknorthgallery #submenunicknorthgallery, #membership #submenumembership, #whistlerlivingoverview #submenuwhistlerlivingoverview, #aerialmap #submenuaerialmap, #whistlergallery #submenuwhistlergallery, #sustainability #submenusustainability, #developeroverview #submenudeveloperoverview, #developergallery #submenudevelopergallery)").hover(function() {
$(this).animate({ backgroundColor: "#e0e2db" }, 400);
},function() {
$(this).animate({ backgroundColor: "rgba(255,255,255,0)" }, 400);
});




/* submenu link text color hover */

$(".submenu li a:not(#estatesoverview #submenuestatesoverview a, #promo #submenupromo a, #location #submenulocation a, #siteplan #submenusiteplan a, #nicknorthoverview #submenunicknorthoverview a, #nicknorthgallery #submenunicknorthgallery a, #membership #submenumembership a, #whistlerlivingoverview #submenuwhistlerlivingoverview a, #aerialmap #submenuaerialmap a, #whistlergallery #submenuwhistlergallery a, #sustainability #submenusustainability a, #developeroverview #submenudeveloperoverview a, #developergallery #submenudevelopergallery)").hover(function() {
$(this).animate({ color: "#646f4f" }, 400);
},function() {
$(this).animate({ color: "#3D4B23" }, 400);
});






$(".buttonlink").hover(function() {
$(this).animate({ backgroundColor: "#979442" }, 400);
},function() {
$(this).animate({ backgroundColor: "#b4b264" }, 400);
});

$("#footerlogos img").hover(function() {
$(this).animate({ opacity:1.0 }, 400);
},function() {
$(this).animate({ opacity:0.8 }, 400);
});





});


