$('#petoftheWeek').mouseover(function(){
$(this).addClass('petoftheWeekHover');
});
$('#petoftheWeek').mouseout(function(){
$(this).removeClass('petoftheWeekHover');
});
