$(document).ready(function() {
    var services = $('#serviceslink');
    services.hover(function() {
        $(this).find('ul').fadeIn('500');
      }, function() {
        $(this).find('ul').fadeOut('500');
      });
    services.find('li').hover(function() {
        $(this).css('background-color', '#6699FF');
      }, function() {
        $(this).css('background-color', '#EEEEEE');
      });
    services.find('li').click(function() {
        var location = $(this).find('a').attr('href');
        window.location.href = location;
      });
  });
  
