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);
   });
   
   $('#menu_esquerdo ul li a').hover (
   function() {
      $(this).animate({ paddingLeft: '20px', 'backgroundColor': '#EEE'}, 200);
   }, 
   function() {
   $(this).animate({ paddingLeft: '15px', 'backgroundColor': '#FFF'}, 400);
   });
   
   $(".vTResultado").easySlider();
}