$(document).ready(function(){ $(".optionsDlvSuc a.delivery").hover( function() { $('.txt .delivery').stop(true, true).fadeIn(300); }, function() { $('.txt .delivery').stop(true, true).fadeOut(300); } ); $(".optionsDlvSuc a.marker").hover( function() { $('.txt .marker').stop(true, true).fadeIn(300); }, function() { $('.txt .marker').stop(true, true).fadeOut(300); } ); });