
$('#services a.cafe').mouseover(function() {
    $('.service.cafe').show();
}).mouseout(function() {
    $('.service.cafe').hide();
});


$('#services a.repair').mouseover(function() {
    $('.service.repair').show();
}).mouseout(function() {
    $('.service.repair').hide();
});


$('#services a.fuel24h').mouseover(function() {
    $('.service.fuel24h').show();
}).mouseout(function() {
    $('.service.fuel24h').hide();
});


