$(document).ready(function(){ $("#enlaces-soporte li").click(function(){ window.location = $(this).find("a:first").attr("href"); }); $("#enlaces-soporte li").hover( function () { $(this).css("background-position","0 -132px"); } , function () { $(this).css("background-position","0 0"); } ); });