// JavaScript Document

function mouse_over(src,clr_over)
   {

     if (!src.contains(event.fromElement))
     {
     src.style.cursor = 'hand';
     src.bgColor = clr_over;
     }

   }


   function mouse_out(src,clr_in)
   {
   if (!src.contains(event.toElement))
   {
   src.style.cursor = 'hand';
   src.bgColor = clr_in;
   }
   }

   
  
  
   function menuklblOn(where) {
 where.style.backgroundColor="#ecd514"; 
 where.style.cursor="hand";
}

function menuklblOff(where) {
 where.style.backgroundColor="";
}


