function mover(id)
{
$("#text"+id).fadeOut(200, function() {$("#salam"+id).animate({width:'toggle'},800);});	 
}
function mout(id)
{
$("#salam"+id).animate({width:'toggle'},800, function(){$("#text"+id).fadeIn(200);}); 
}

