Cant find line renderer

Hi,
Im following the 3D tutorial on this site and now i have come to the point where Im supposed to Line redering.
So I follow the step: Add a Line Renderer Component (Component-­>Miscellaneous-­>Line Renderer).
But in the Miscellaneous menu in the top all I se is Animation, Network View, Wind zone.

Any suggestions what to do?

The location might have changed at some point. In Unity 3.5 you find it under Component->Effects->Line Renderer.

You could also declare and attach it through script:

var lineRenderer : LineRenderer = gameObject.AddComponent(LineRenderer);