$(document).ready(
  function()
  {
	$("ul.odd li").css("margin-bottom", "5px");
    $("ul.odd li:nth-child(odd)").css("background", "#F1F7FA");
  }
);


