Хотя бы HTML скинул бы... Ну а так примерно:
Как я понял у тебя html примерно такой:
<div class="green"></div>
<div class="orange"></div>
<div class="green"></div>
<div class="orange"></div>
Отталкиваясь от этого получаем:
CSS (прячем оранжевые блоки):
.orange {
display: none;
}
JS:
$('.green').hover(function(){
$(this).next().show();
}, function(){
$(this).next().hide();
});