$(document).ready(function() {

		$('table:eq(1) td').css('font-weight', 'bold');
		$('table:eq(1) td:eq(0)').css('font-size', '120%');
		$('table:eq(1) td:eq(1)').addClass('price');
		$('table:eq(3)').css('font-size', '90%');
		$('table:eq(3) td:contains("Location")').css('font-weight', 'bold');
		$('table:eq(3) td:contains("Style")').css('font-weight', 'bold');
		$('table:eq(3) td:contains("Bedrooms")').css('font-weight', 'bold');
		$('table:eq(3) td:contains("Baths")').css('font-weight', 'bold');
		$('table:eq(3) td:contains("Status")').css('font-weight', 'bold');
		$('table:eq(5)').hide();
		
})




