jQuery(document).ready(function(){
	General.init();
});

var General = function()
{
	var init = function()
	{
		jQuery("#p_method_checkmo").removeAttr('onclick');
		jQuery("#p_method_buckaroo_basic").parents('dt').eq(0).hide();
		jQuery("#p_method_checkmo").change(function(){
			jQuery("#payment_form_buckaroo_basic input").attr('checked', false);
		});
		jQuery("#payment_form_buckaroo_basic input").change(function(){
			jQuery("#p_method_buckaroo_basic").attr('checked', true);
		});
	};

	return {
		init : function() { init(); }
	};
}();