$(document).ready(function(){

    if($('body').attr("id")!= ''){

                var pageId = $('body').attr("id");
               
                $("a."+pageId).addClass("current");

            }
            

    $("table.adminList tr:even td").addClass("stripe");

    $("table.adminList tr").hover(
      function () {
        $(this).find("td").addClass("hover");
      },
      function () {
        $(this).find("td").removeClass("hover");
      }
    );

    
    var ta = $(".wysiwyg"); // find all textareas with editor class

    $.each(ta, function(i, textarea){

           // var oFCKeditor = new FCKeditor($(this).attr("name"));

            CKEDITOR.replace($(this).attr("name"),{
                toolbar: "Basic",
                width: "500"
            });


    }) ;
  });




   



