hola Grumete, tu error esta al momento de dar las propiedades del width y el heigh
  
Código:
 $('#'+wich).animate(
{
width: '490',
height: '300',
},
400
)
  en la linea del height al final, no debes agregar esa coma, osea de 
height: '300', deberia ser 
height: '300'  
Código:
 $('#'+wich).animate(
{
width: '490',
height: '300'
},
400
)