$(function(){ Cufon.replace('h1'); });
$(function(){ Cufon.replace('#menu01 A, #menu02 A', { hover: true }); });
$(function(){ Cufon.replace('.bandlist P, .bandlist P A', { hover: true }); });

$(function(){
	
	$('input').checkBox();
	
	$('#toggle-all').click(function(){
		$('#example input[type=checkbox]').checkBox('toggle');
		return false;
	});
	
	$('#check-all').click(function(){
		$('#example input[type=checkbox]').checkBox('changeCheckStatus', true);
		return false;
	});
	$('#uncheck-all').click(function(){
		$('#example input[type=checkbox]').checkBox('changeCheckStatus', false);
		return false;
	});
	$('#check-2').click(function(){
		$('#example input[type=radio]:eq(1)').checkBox('changeCheckStatus', true);
		return false;
	});
	$('#native').click(function(){
		//native methods
		$('#example input[type=radio]:eq(0)').attr({checked: true, disabled: true})
			//reflect the current state
			.checkBox('reflectUI');
		return false;
	 });
});

