jQuery(function() {
    jQuery( "#signup input[type= 'checkbox' ]" ).button();
    jQuery( "#signup input[type= 'radio' ]" ).button();
    jQuery( "select" ).selectmenu();
	
	inputCheckbox = jQuery('input:checkbox');
	inputRadio = jQuery('input:radio'); 
	
	inputCheckbox.next().find('span').css({
		'paddingLeft': '2.4em',
		'background': 'url(/page/-/images/checkbox-button.png) 6px 50% no-repeat'
	
		});
		
	inputRadio.next().find('span').css({
		'paddingLeft': '2.4em',
		'background': 'url(/page/-/images/radio-button.png) 6px 50% no-repeat'
		});	
		
	inputCheckbox.bind('click', function(){jQuery(this).next().find('span').toggleClass('checkbox-checked');});
	
  });