$(document).ready(function(){ $("a.bAction").hover( function(){ $(this).next().fadeIn("slow"); }, function(){ $(this).next().fadeOut("slow"); }); });