$(document).ready(function() {

		// change all td's with the word price to all bold
		$('td[@width^="38"]:contains("Price")').addClass('price');
		
		
})