$(document).ready(function() {

$('td:contains(PLUG)').addClass('highlight');

$('td:contains(PLUG)').nextAll().addClass('highlight');

$(':image').addClass('noBorder');

$('.m76aColumnRight :image').addClass('vertCentre');

//$('#bodywork h2').addClass('clearBoth');

$('ul#bodywork li').addClass('inLine');

$('#fourColumn tr:even').addClass('alt');

$('#menu li').hover(function(){
  $(this).addClass('hover');
  }, function() {
	  $(this).removeClass('hover');
  });

//$('#fourColumn tr:even').removeClass('alt');

//$('tr:nth-child(odd)').addClass('alt');
/* end: table row colors */

//for div  
//$("div:odd").css("background-color", "#F4F4F8");  
//$("div:even").css("background-color", "#EFF1F1");  
 
//for table row  
//$("#fourColumn tr:even").css("background", "#F00");  
//$("#fourColumn tr:odd").css("background", "#000");

//$('#bodywork ul li ul').addClass('inLine');

/*$('a[href^=http] [href^=add-to-basket]').addClass(addToBasket); [name=submit]*/

}); // end of ready

                           

