
$(document).ready(function(){



$("a:not(#main-registernow a, .menuitems a, #residences-tabs-menu li a)").hover(function() {
$(this).animate({ color: "#fffccd" }, 400);
},function() {
$(this).animate({ color: "#b88767" }, 400);
});





$("#submit").hover(function() {
$(this).animate({ backgroundColor: "#7c1015" }, 400);
},function() {
$(this).animate({ backgroundColor: "#66050e" }, 400);
});


$(".menuitems a:not(body#home a#menuhome, body#affinity a#menuaffinity, body#residences a#menuresidences, body#neighbourhood a#menuneighbourhood, body#news a#menunews, body#aboutbosa a#menuaboutbosa, body#register a#menuregister, body#contact a#menucontact)").fadeTo(400, 0.5); // This sets the opacity of the thumbs to fade down to 60% when the page loads

$(".menuitems a:not(body#home a#menuhome, body#affinity a#menuaffinity, body#residences a#menuresidences, body#neighbourhood a#menuneighbourhood, body#news a#menunews, body#aboutbosa a#menuaboutbosa, body#register a#menuregister, body#contact a#menucontact)").hover(function(){
$(this).fadeTo(400, 1.0); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo(400, 0.5); // This should set the opacity back to 60% on mouseout
});



$("#main-registernow, div#socialnetworks img, div#contact-socialnetworks img").fadeTo(400, 0.6); // This sets the opacity of the thumbs to fade down to 60% when the page loads

$("#main-registernow, div#socialnetworks img, div#contact-socialnetworks img").hover(function(){
$(this).fadeTo(400, 1.0); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo(400, 0.6); // This should set the opacity back to 60% on mouseout
});




});


