$(function() {

  $('.download').add('.year').hover(
    function () {
      $(this).children().css('text-decoration','underline');
      $(this).css('background-color','#FFF');
    }, 
    function () {
      $(this).children().css('text-decoration','none');
      $(this).css('background-color','');
    }
  );
  
  $('.images > div').add('.videos > div').add('.download-block > div').hover(
    function () {
      $(this).addClass('img-selected');
      $(this).children('a').css('text-decoration','underline');
    }, 
    function () {
      $(this).removeClass('img-selected');
      $(this).children('a').css('text-decoration','none');
    }
  );

  $('.preview-img div:has(.img-shadow)').hover(
    function () {
      $(this).addClass('img-selected');
    }, 
    function () {
      $(this).removeClass('img-selected');
    }
  );
  
  $('.news > div').add('.home > div > div').hover(
    function () {
      $(this).addClass('selected');
      $(this).find('a').css('text-decoration','underline');
    }, 
    function () {
      $(this).removeClass('selected');
      $(this).find('a').css('text-decoration','none');
    }
  );
  
  $('.home > div > div').click(function() {
    if($(this).find('a').length == 1) window.location = $(this).find('a').attr("href");
  });
  
});