/**
 * Scripts for the regular website.
 */

function goListItem(url, item) {
   var oldbg = item.style['background'];
   item.style['background'] = "rgb(59,116,231) url(img/iphone/loading.gif) right center no-repeat";
   window.location = url;
   setTimeout(function() { item.style['background'] = oldbg; }, 1000);
}



