$(document).ready(function(){
$(".downservices").mouseenter(function() {
$(this).parent().find(".servicesdropped").slideDown("fast").show();
$(this).parent().hover(function() {
}, function(){
$(this).parent().find(".servicesdropped").slideUp("fast");
}); }); });

$(document).ready(function(){
$(".downservices2").mouseenter(function() {
$(this).parent().find(".servicesdropped2").slideDown("fast").show();
$(this).parent().hover(function() {
}, function(){
$(this).parent().find(".servicesdropped2").slideUp("fast");
}); }); });

$(document).ready(function(){
$(".downservices3").mouseenter(function() {
$(this).parent().find(".servicesdropped3").slideDown("fast").show();
$(this).parent().hover(function() {
}, function(){
$(this).parent().find(".servicesdropped3").slideUp("fast");
}); }); });

$(document).ready(function(){
$(".downservices4").mouseenter(function() {
$(this).parent().find(".servicesdropped4").slideDown("fast").show();
$(this).parent().hover(function() {
}, function(){
$(this).parent().find(".servicesdropped4").slideUp("fast");
}); }); });