function hideme(id)
{
     $('#'+id).hide('fast');
}
 
function showme(id)
{
     $('#'+id).show('fast');
}
 

