function payOption() {
	$('.select_room_now_1').click(function() {
		//Update the pickroom hidden field
		var roomid = $('.room_id_1').val();
		$("#pickroom").val(roomid);
		//Animate the buttons
		$(this).animate({backgroundColor:'#ffcc33'}, 300);
		$(this).html('SELECTED');
		$('.breakfast_block').hide();
		$(this).parent().find('.breakfast_block').slideDown('slow');
		$(".radio_now").val('true');
		$(".radio_arrival").val('');
		$(".select_room_arrival_1").animate({backgroundColor:'#bbb'}, 300);
		$(".select_room_arrival_1").html('SELECT');
		$(".select_room_arrival_2").animate({backgroundColor:'#bbb'}, 300);
		$(".select_room_arrival_2").html('SELECT');
		$(".select_room_now_2").animate({backgroundColor:'#bbb'}, 300);
		$(".select_room_now_2").html('SELECT');
		// Update the values
		var total = $('.room_total_hidden_1').val();
		$(".nowprice").val(total);
		$('.select_submit').show();
	});
	$('.select_room_now_2').click(function() {
		//Update the pickroom hidden field
		var roomid = $('.room_id_2').val();
		$("#pickroom").val(roomid);
		//Animate the buttons
		$(this).animate({backgroundColor:'#ffcc33'}, 300);
		$(this).html('SELECTED');
		$('.breakfast_block').hide();
		$(this).parent().find('.breakfast_block').slideDown('slow');
		$(".radio_now").val('true');
		$(".radio_arrival").val('');
		$(".select_room_arrival_1").animate({backgroundColor:'#bbb'}, 300);
		$(".select_room_arrival_1").html('SELECT');
		$(".select_room_arrival_2").animate({backgroundColor:'#bbb'}, 300);
		$(".select_room_arrival_2").html('SELECT');
		$(".select_room_now_1").animate({backgroundColor:'#bbb'}, 300);
		$(".select_room_now_1").html('SELECT');
		var total = $('.room_total_hidden_2').val();
		$(".nowprice").val(total);
		$('.select_submit').show();
	});
	$('.select_room_arrival_1').click(function() {
		//Update the pickroom hidden field
		var roomid = $('.room_id_1').val();
		$("#pickroom").val(roomid);
		//Animate the buttons
		$(this).animate({backgroundColor:'#ffcc33'}, 300);
		$(this).html('SELECTED');
		$('.breakfast_block').hide();
		$(this).parent().find('.breakfast_block').slideDown('slow');
		$(".radio_now").val('');
		$(".radio_arrival").val('true');
		$(".select_room_now_1").animate({backgroundColor:'#bbb'}, 300);
		$(".select_room_now_1").html('SELECT');
		$(".select_room_now_2").animate({backgroundColor:'#bbb'}, 300);
		$(".select_room_now_2").html('SELECT');
		$(".select_room_arrival_2").animate({backgroundColor:'#bbb'}, 300);
		$(".select_room_arrival_2").html('SELECT');
		// Update the values
		var total = $('.room_total_arrival_1').val();
		$(".arrivalprice").val(total);
		$('.select_submit').show();
	});
	$('.select_room_arrival_2').click(function() {
		//Update the pickroom hidden field
		var roomid = $('.room_id_2').val();
		$("#pickroom").val(roomid);
		//Animate the buttons
		$(this).animate({backgroundColor:'#ffcc33'}, 300);
		$(this).html('SELECTED');
		$('.breakfast_block').hide();
		$(this).parent().find('.breakfast_block').slideDown('slow');
		$(".radio_now").val('');
		$(".radio_arrival").val('true');
		$(".select_room_now_1").animate({backgroundColor:'#bbb'}, 300);
		$(".select_room_now_1").html('SELECT');
		$(".select_room_now_2").animate({backgroundColor:'#bbb'}, 300);
		$(".select_room_now_2").html('SELECT');
		$(".select_room_arrival_1").animate({backgroundColor:'#bbb'}, 300);
		$(".select_room_arrival_1").html('SELECT');
		// Update the values
		var total = $('.room_total_arrival_2').val();
		$(".arrivalprice").val(total);
		$('.select_submit').show();
	});
}
