function showLogo(id) {
    jQuery('#' + id).fadeIn(200);
}
function hideLogo(id) {
    jQuery('#' + id).fadeOut(200);
}
