$(document).ready(function(){
$("#logo").hide();  
});

  function show_logo()
{
$("#logo").show();
}
