$(".partpanel").hover(
  function () {
    $(this).addClass('grey');
  }, 
  function () {
    $(this).removeClass('grey');
  }
);
$(".hasmore").hover(
  function () {
    $(this).find('.dropdown').show();$(this).find('a:first').addClass('selected');
  }, 
  function () {
    $(this).find('.dropdown').hide();$(this).find('a:first-child').removeClass('selected');
  }
);
$(".temp").hover(
  function () {
    $('.temp .mask').show();
    $(this).find('.mask').hide()
  }, 
  function () {
    $('.temp .mask').hide();
  }
);




