jQuery('document').ready(function() {
	$ = jQuery;
  
  // DROPDOWN MENU

  $('#corp_meniu_header ul li').mouseenter(function() {
		$(this).children('.children').show();
		$(this).children('ul').children('li').mouseenter(function() { $(this).children('ul').show(); });
		$(this).children('ul').children('li').mouseleave(function() { $(this).children('ul').hide(); });
	});
	
	$('#corp_meniu_header ul li').mouseleave(function() {
		$(this).children('.children').hide();
	});  
  
  $('#corp_meniu_header ul li ul li').mouseenter(function() {
    $(this).addClass('mutunache');
  });
  
  $('#corp_meniu_header ul li ul li').mouseleave(function() {
		$(this).removeClass('mutunache');
	});  
});
