// HEADER
$(function() {
$("#header-logo").css("opacity","0.3");
$("#header-logo").hover(function () {
$(this).stop().animate({
opacity: 1.0
}, "slow");
},
function () {
$(this).stop().animate({
opacity: 0.3
}, "slow");
});
});

// HOME FRONT IMAGE
$(function() {
$(".home-frontimage").css("opacity","0.9");
$(".home-frontimage").hover(function () {
$(this).stop().animate({
opacity: 1.0
}, "slow");
},
function () {
$(this).stop().animate({
opacity: 0.9
}, "slow");
});
});
