
$(document).ready(function(){


$("a:not(.coda-nav-left a, .coda-nav-right a, #submit a, .opacity a)").hover(function() {
$(this).animate({ color: "#7ccfd9" }, 400);
},function() {
$(this).animate({ color: "#008494" }, 400);
});



$(".menuitem:not(body#products div#menuproducts, body.showcase div#menushowcase, body#news div#menunews, body#aboutus div#menuaboutus, body#contact div#menucontact)").hover(function() {
$(this).animate({ backgroundColor: "#f3fefc" }, 400);
},function() {
$(this).animate({ backgroundColor: "#c3f8f2" }, 400);
});




$(".coda-nav-left a, .coda-nav-right a").hover(function() {
$(this).animate({ color: "#333333" }, 400);
},function() {
$(this).animate({ color: "#aaaaaa" }, 400);
});


$(".lightboxthumb").hover(function() {
$(this).animate({ borderLeftColor: "#7ccfd9", borderRightColor: "#7ccfd9", borderTopColor: "#7ccfd9", borderBottomColor: "#7ccfd9" }, 400);
},function() {
$(this).animate({ borderLeftColor: "#008494", borderRightColor: "#008494", borderTopColor: "#008494", borderBottomColor: "#008494" }, 400);
});





$("#submit").hover(function() {
$(this).animate({ backgroundColor: "#b9efeb" }, 400);
},function() {
$(this).animate({ backgroundColor: "#edfbfa" }, 400);
});




});

