$(document).ready(function(){

	var curr_product = $("#product_id").val();

	if(curr_product != '') {
		$("#plans div.plan").removeClass('selected').hide();
		$("#product"+curr_product+" a.sel-button").addClass('sel-active');
		$("#product"+curr_product+" a.change").show();
		$("#product"+curr_product).show().addClass('selected');
		$("#not_products").show();
	}

	$("#plans a.sel-button").click(function(){
		var $this = $(this);

		$("#plans div.plan").removeClass('selected').hide();
		$("#plans a.sel-button").removeClass('sel-active');
		$("#plans a.change").hide();

		$this.addClass('sel-active');
		$this.parent().parent().addClass('selected').show();
		$("#plans a.change").show();

		$("#product_id").val($this.parent().parent().attr('id').replace('product', ''));

		$("#not_products").show();

		return false;
	});
	$("#plans a.change").click(function(){
		$("#plans div.plan").show();
		$("#plans a.change").hide();
		return false;
	});
});