help! error BCE0044: unexpected char: 0x201C.

i have 2 scripts, and in the script amimations
i have a problem
BCE0044: unexpected char: 0x201C.
the problem is in the line 10 in the first script
///////////////////////////////////////////////////////////////
#pragma stric
static var _animation:int;
function Start () {
}
function Update () {
switch(_animation){
case(0):
animation.Play(“idle”);
break;
case(1):
animation.Play(“walk”);
break;
}
}
///////////////////////////////////////////////////////////////
whats the problem?
i have a other script linked if this
////////////////////////////////////////////////////////////////
#pragma strict
var _speedy:float;
var _speedyRotate:float;
function Start () {
_speedy=1Time.deltaTime;
_speedyRotate=10
Time.deltaTime;
}
function Update () {
Animations._animation=0;
if(Input.GetKey(KeyCode.W)){
transform.Translate(0,0,_speedy);
Animahierachy._animation=1;
}
if(Input.GetKey(KeyCode.S)){
transform.Translate(0,0,-_speedy);
}
if(Input.GetKey(KeyCode.A)){
transform.Rotate(0,-_speedyRotate,0);
}
if(Input.GetKey(KeyCode.D)){
transform.Rotate(0,_speedyRotate,0);
}
}
/////////////////////////////////////////////////////////////////
PLEASE HELP ME!

http://www.unicodemap.org/details/0x201C/index.html

doesnt like your speech mark (") chars for some reason.

Turn off smart quotes or whatever equivalent you have. Also use code tags when posting code.

–Eric

Thanks the problem has been solved!