$(document).ready(function()  {
  $('.contact-menu a').click(function() {
    var thetarget = $(this).attr('name');
    $('ul.contact').hide();
    $('#'+thetarget).show();
  });
  $('.news-item:first').show();
  $('#slider').easySlider({ auto: true, continuous: true });
  $('#news-item').easySlider({ auto: true, continuous: true });
  $('li.expanded ul.menu').append('<div style="height:10px;background: url(/sites/all/themes/hypernet_v2/images/menuend.png)">&nbsp;</div>');
  $('li.expanded a').mouseover(function() {
    $(this).addClass('over');
  });
  $('li.expanded ul.menu').find('li:first').css('border-top', 'none');
});

