//// JavaScript Document
//$(document).ready(function () {
//							$(".dd").hover(
//										   function () {
//											   $("#drop_down").show();
//											   },
//										   function () {
//											  
//												$("#drop_down").hide() 
//										   });
//							});

function dd_show() {
        $(".down-list2").fadeIn(500)
   
     }
function services_hover() {
        $("#servicesimg").hover(
 function()
 {
  this.src = this.src.replace("_ot","_o");
 },
 function()
 {
  this.src = this.src.replace("_o","_ot");
 }
);
   
     }
$(document).ready(function(){


    $(".menu-first").hover(
      function () {
        $(".down-list").fadeIn(1000);
      }, 
      function () {
        $(".down-list", this).slideUp(100);//, function(){ $(".menu-first", obj).removeClass(".slide-down"); });
      }
    );


});
