var obj = null;

function menu() {
  //alert($('.first').parent().html())
  
	$('.first').parent().hover(function() {
    if(obj==null){
      $(this).css('background','#eae8e8'),
      $(this).find('a').css('color','#5192a7');
  		obj=$(this).find('div');
  		//obj.slideDown("slow");
  		obj.css('display','block');
  	}
	},
  function() {
    if(obj!=null){		
		  //obj.slideUp("slow");
		  obj.css('display','none');
		  obj.parent().css('background','none');
		  $('.first').css('color','white');
		  obj=null;
		}
		//alert('je sors');
	}
  );
  
	/*
  $('.closemenu').click(function(){
    if(obj!=null){		
		  obj.slideUp("slow");
		  obj.parent().css('background','none');
		  $('.first').css('color','white');
		  obj=null;
		}
	});
	*/
};
