function startScript() {
   ElementFadeInOut('idLoading');
   ElementFocus('idStartFocus');
   
   $('#menu_admin ul li a').hover (
   function() {
      $(this).animate({ paddingLeft: '20px', backgroundColor:'#EEE', font:'bold' }, 200);
   }, 
   function() {
      $(this).animate({ paddingLeft: '15px', backgroundColor:'#FFF' }, 400);
   });
   
   $('#idTextoHtmlArea').ckeditor(function(){
      var editor = $('#idTextoHtmlArea').ckeditorGet(); 
   },
   {
      width: 500,
      height: 350
   });
   
   $(".vTResultado").easySlider();
}
