// *************************** jQuery Initialisation **************************** //

$(document).ready(function() {
	// add a hover class - because ie doesn't support 
	// css :hover styles on anything other than an anchor
	$("#priceTable tbody td").hover( function () {
		$(this).addClass("hover");
	}, function () {
		$(this).removeClass("hover");
	} );

	$('#priceTable tbody td').click(function() {
		$('#priceTable tbody td.selected').removeClass("selected")
		$(this).addClass('selected').children("input[@type=radio]")[0].checked = true;
		
	 });

	$('#extrasTable select').change(function() {
		if ($(this).val() != '') {
			$(this).closest("tr").addClass("hover")
		} else {
			$(this).closest("tr").removeClass("hover")
		}
	});

});


