function setFrontpageCircleButton() {
    $('.circle-button').bind('mouseover', circleButtonFadeIn);
    $('.circle-button').bind('mouseleave', circleButtonFadeOut);
}

function circleButtonFadeIn() {
    $(this).animate({opacity: 1.0}, 200);
}

function circleButtonFadeOut() {
    $(this).animate({opacity: 0.7}, 200);
}
