$(function() {
  $('.sidebar .promo').hover(function() {
    $(this).addClass('hover');
  }, function() {
    $(this).removeClass('hover');
  }).click(function() {
		window.location = $("a", this).attr('href');		
  });
});