$(function() {
	//all hover and click logic for buttons
	$(".button").hover(
		function() {
			if (!$(this).is(".ui-state-disabled")) {
				$(this).addClass("ui-state-hover");
			}
		},
		function() {
			if (!$(this).is(".ui-state-disabled")) {
				$(this).removeClass("ui-state-hover");
			}
		}
	).mousedown(function() {
			$(this).parents('.button-set-single:first').find(".button.ui-state-active").removeClass("ui-state-active");
			if ($(this).is('.ui-state-active.button-toggleable, .button-set-multi .ui-state-active')) { $(this).removeClass("ui-state-active"); }
			else { $(this).addClass("ui-state-active"); }
	}).mouseup(function() {
		if (!$(this).is('.button-toggleable, .button-set-single .button, .button-set-multi .button')) {
			$(this).removeClass("ui-state-active");
		}
	});
});