$(document).ready(function(){
	var chk = $("#table1 :radio");
	var btn = $("#butt-price");
	var btnb = $("#butt-book");
	var plist = $(".prices-list");

	var curr_val = '';
	
	chk.click(function(){
		curr_val = this.value;

		if(chk.filter(":checked").length){
			btn.show();
			btnb.show();
		} else {
			btn.hide();
			btnb.hide();
		}
	});

	btn.click(function(){
		$("tr:gt(0)", plist).hide().filter(".tr" + curr_val).show();
		plist.show();
		window.scrollBy(0, 200);

	});

	btnb.click(function(){
		location.href = $("#navigation .book a").attr("href") + curr_val.substring(0, curr_val.length-2) + "/" + curr_val.substring(curr_val.length-1, curr_val.length) + "/";
	});
});