
function FadeElementIn(id) {

     $("#" + id).fadeIn();      
}

function FadeElementOut(id) {

     $("#" + id).fadeOut();
}
