$(function() {
   $("A").bind("focus",function() { this.blur(); });

   $("DIV.channel").bind("mouseover",function() {
      this.style.backgroundPosition="0px -60px";
   }).bind("mouseout",function() {
      this.style.backgroundPosition="0px 0px";
   });

   $("DIV.channel_soon").bind("mouseover",function() {
      this.style.backgroundPosition="0px -60px";
   }).bind("mouseout",function() {
      this.style.backgroundPosition="0px 0px";
   });
});
