// JavaScript Document
jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}

$(document).ready(function ()
{
	$.preloadImages("/images/buttonOn.jpg");
	$(".featureList tr:even").css({'background-color': '#bbb'});
});