$(document).ready(function() {
	$('#add_comment').hide();
	$('a.add_comment_link').click(function(){
	  $('#add_comment').fadeIn();
	  document.location='#add_comment';
      });
	$('#cancel_comment').click(function(){
	  $('#add_comment').fadeOut();
      });
	  $("input[@name='system1']:radio").click(function(){
		change_system();
	  });
	  $("#recount").click(function(){
		recount_value();
		change_system();
		return false;
	  });

          $("#addtobuy_link").click(function(){
		addToBuy();
		return false;
	  });
});