$(document).ready(function(){

	$("#brandlist li a").hover(
      function () {
        $(this).addClass("hovered");
      }, 
      function () {
        $(this).removeClass("hovered");
      }
    );

});
