// JavaScript Document
<!--hoover meniu stanga-->
$(document).ready(function(){
  $("#meniu-st").mouseover(function(){
				    $("#meniu-st #top").css("background-image","url(images/but-over/1.png)");
				    $("#meniu-st #center").css("background-image","url(images/but-over/2.png)");
				    $("#meniu-st #bottom").css("background-image","url(images/but-over/3.png)");											
  });
});

$(document).ready(function(){
  $("#meniu-st").mouseout(function(){
				    $("#meniu-st #top").css("background-image","url(images/but-gri/1.png)");
				    $("#meniu-st #center").css("background-image","url(images/but-gri/2.png)");
				    $("#meniu-st #bottom").css("background-image","url(images/but-gri/3.png)");	
  });
});


<!--hoover meniu dreapta-->
$(document).ready(function(){
  $("#meniu-dr").mouseover(function(){
				    $("#meniu-dr #top").css("background-image","url(images/but-over/1.png)");
				    $("#meniu-dr #center").css("background-image","url(images/but-over/2.png)");
				    $("#meniu-dr #bottom").css("background-image","url(images/but-over/3.png)");											
  });
});

$(document).ready(function(){
  $("#meniu-dr").mouseout(function(){
				    $("#meniu-dr #top").css("background-image","url(images/but-gri/1.png)");
				    $("#meniu-dr #center").css("background-image","url(images/but-gri/2.png)");
				    $("#meniu-dr #bottom").css("background-image","url(images/but-gri/3.png)");	
  });
});
