﻿$(document).ready(function() {
$(".searchlist li a").each(function(index) {
    if (false && $.browser.msie)
      fixUrl(this);

    function fixUrl(el) {
      var q = el.href.substring(61);
      el.href = "http://www.rhapsody.com/-search?searchtype=RhapKeyword&query=" + encodeURIComponent(q);
    }
    
  });
});

