function loadFooterEffects(elemID){
    $(elemID).find('img').hide();
    $(elemID).hover(function(){
        $(this).find('img').fadeIn('fast');
    }, function(){
        $(this).find('img').fadeOut('fast');
    });
}