$(document).ready(function(){

	$("a img").hover(
      function () {
        $(this).fadeTo("fast", 0.7);
      }, 
      function () {
        $(this).fadeTo("fast", 1);
      }
	);	

	$(".results .sideRight .text:first").css("padding-top","30px");
	$(".sideRight .productBox:last").addClass("last");
	$(".standardTable tr:nth-child(2n)").addClass("odd");


 });



