Please help with my Boolean data type

Feel like an idiot right now…why is my boolean not work?
[AS]
showHideBG_mc.text_mc.onRelease = function()
{
var _click:Boolean = true;
//_click = true;
if(_click)
{
trace(“hit”);
showHideBG_mc.gotoAndPlay(2);
}
else
{
trace(“hitMe”)
showHideBG_mc.gotoAndPlay(11);
}
}
[/AS]