$(function() {
   $('dt').hover(function(){
      $(this).addClass('dl_hover');
	},
   function(){
	  $(this).removeClass('dl_hover');
   });
});

$(function() {
   $('.imageLink').hover(function(){
      $(this).addClass('imageLinkHover');
	},
   function(){
	  $(this).removeClass('imageLinkHover');
   });
});


$(function() {
   $('.clickable').hover(function(){
      $(this).addClass('hoverbackground');
	  $('.next', this).addClass('hoverlink');
	  $('.title', this).addClass('hovertitle');
	  $('.linkimage', this).addClass('hoverlinkimage');
	},
   function(){
	  $(this).removeClass('hoverbackground');
	  $('.next', this).removeClass('hoverlink');
	  $('.title', this).removeClass('hovertitle');
	  $('.linkimage', this).removeClass('hoverlinkimage');
	});
});









