$(function () {
	$("A.actionButton, BUTTON:not(.ui-widget), BUTTON[type=button]:not(.ui-widget), INPUT[type=submit], INPUT[type=button], INPUT[type=reset]").addClass("button");
	
	// button/input adjustment
	$("BUTTON:not(.ui-widget), BUTTON[type=button]:not(.ui-widget), INPUT[type=submit], INPUT[type=button], INPUT[type=reset]").addClass("buttonFix");
	
	// Default Hover
	
	// Submit Button
	$("BUTTON[type=submit]:not(.ui-widget), INPUT[type=submit]").addClass("submit");
	
	// Cancel/Clear Button
	$("BUTTON[type=reset]:not(.ui-widget), INPUT[type=reset]").addClass("cancel");
	
});
