// jQuery for style purposes

$(document).ready(function(){
	$('.cot_rates_table tr:odd').addClass('odd');
	
	$('.cottages_table:even').addClass('even');
	
	$('.cottages_table:odd').addClass('odd-cottage');
	
	$('.cot_rates_table tr td:nth-child(10), .cot_rates_table tr th:nth-child(7), .cot_rates_table tr td:nth-child(6), .cot_rates_table tr th:nth-child(6)').css({
		'border-right' : 'solid 5px #860909'});
		
	$('#toggle-terms').click(function () {
		$('#terms').stop().slideToggle('fast');
	});
	
	
	
});

