$(document).ready(function(){
	$('button').bind('click', function(){
		$('button').not(this).attr('disabled', 'disabled');
	});
});

