function blick_menu()
{

   $('a.mhome').hover(
       function() { $(this).stop().animate( { backgroundColor: "#ff5900", color: "#ffffff" } , "fast" ); },
	   function() { $(this).stop().animate( { backgroundColor: "#ffffff", color: "#000000" } , "fast" ); }
   );

   $('a.mdespre').hover(
       function() { $(this).stop().animate( { backgroundColor: "#e03c04", color: "#ffffff" } , "fast" ); },
	   function() { $(this).stop().animate( { backgroundColor: "#ffffff", color: "#000000" } , "fast" ); }
   );

   $('a.mservicii').hover(
       function() { $(this).stop().animate( { backgroundColor: "#e00303", color: "#ffffff" } , "fast" ); },
	   function() { $(this).stop().animate( { backgroundColor: "#ffffff", color: "#000000" } , "fast" ); }
   );

   $('a.mporto').hover(
       function() { $(this).stop().animate( { backgroundColor: "#aa0000", color: "#ffffff" } , "fast" ); },
	   function() { $(this).stop().animate( { backgroundColor: "#ffffff", color: "#000000" } , "fast" ); }
   );

   $('a.mcontact').hover(
       function() { $(this).stop().animate( { backgroundColor: "#780000", color: "#ffffff" } , "fast" ); },
	   function() { $(this).stop().animate( { backgroundColor: "#ffffff", color: "#000000" } , "fast" ); }
   );

   $('a.m2home').hover(
       function() { $(this).stop().animate( { borderLeftColor: "#ff5900" } , "fast" ); },
	   function() { $(this).stop().animate( { borderLeftColor: "#ffffff" } , "fast" ); }
   );

   $('a.m2despre').hover(
       function() { $(this).stop().animate( { borderLeftColor: "#e03c04" } , "fast" ); },
	   function() { $(this).stop().animate( { borderLeftColor: "#ffffff" } , "fast" ); }
   );

   $('a.m2servicii').hover(
       function() { $(this).stop().animate( { borderLeftColor: "#e00303" } , "fast" ); },
	   function() { $(this).stop().animate( { borderLeftColor: "#ffffff" } , "fast" ); }
   );

   $('a.m2porto').hover(
       function() { $(this).stop().animate( { borderLeftColor: "#aa0000" } , "fast" ); },
	   function() { $(this).stop().animate( { borderLeftColor: "#ffffff" } , "fast" ); }
   );

   $('a.m2contact').hover(
       function() { $(this).stop().animate( { borderLeftColor: "#780000" } , "fast" ); },
	   function() { $(this).stop().animate( { borderLeftColor: "#ffffff" } , "fast" ); }
   );
  
  
}

