Styles = {};
Styles.FilterMenuOver = {
	opacity: '0.99'
};
Styles.FilterMenuOff = {
	opacity: '0.65'
};

// Settings for the Tipped library.
// Requires the Tipped library to be loaded.
Bridge.Object.extend(Tipped.Skins || (Tipped.Skins = {}), {
	'danner': {
		border: 0,
		maxWidth: 200,
		hook: 'bottommiddle',
		offset: { y: -3 },
		showOn: false,
		hideOn: [
			{ element: 'target', event: 'keydown' },
			{ element: 'target', event: 'blur' }
		],
		fadeDuration: 0.3,
		background: { color: '#3B3630' },
		shadow: { blur: 3, opacity: 0.25, offset: { y: 2 }}
	}
});
// Event callback that can be used for displaying a Tipped tooltip attached to the element which caused the event.
// Example: $('myInput').observe('focus', throwTip)
var throwTip = function(e) {
	e.element().addClassName('tipped');
	Tipped.show(e.element());
}

// Global setting object for a small, dynamically generated spinner display using the Spinners library.
var spinner_settings = {
	radii: [4,8],
	color: '#666666'
}
