// initialize mouseovers
$(".link").mouseover(function(){$(this).addClass('hover')}).mouseout(function(){$(this).removeClass('hover')});

