function ReplaceAllTextareas() 
{
    // replace all of the textareas
    var allTextAreas = document.getElementsByTagName("textarea");
    for (var i=0; i < allTextAreas.length; i++) 
    {
        if (allTextAreas[i].className == 'fckTeaser')
        {
            var oFCKeditor = new FCKeditor( allTextAreas[i].name ) ;
            oFCKeditor.BasePath = "/Scripts/FCKeditor/" ;
            oFCKeditor.ToolbarSet = "BWBAdmin";
            oFCKeditor.Height = 150;
            oFCKeditor.ReplaceTextarea() ;
        }
        if (allTextAreas[i].className == 'fckText')
        {
            var oFCKeditor = new FCKeditor( allTextAreas[i].name ) ;
            oFCKeditor.BasePath = "/Scripts/FCKeditor/" ;
            oFCKeditor.ToolbarSet = "BWBAdmin";
            oFCKeditor.Height = 300;
            oFCKeditor.ReplaceTextarea() ;
        }
        if (allTextAreas[i].className == 'fckNotes')
        {
            var oFCKeditor = new FCKeditor( allTextAreas[i].name ) ;
            oFCKeditor.BasePath = "/Scripts/FCKeditor/" ;
            oFCKeditor.ToolbarSet = "BWB";
            oFCKeditor.Height = 300;
            oFCKeditor.ReplaceTextarea() ;
        }
    }
}

