
// initialize admin element behaviors
// -----------------------------------------------------
$(document).ready(function(){

	// tooltips
	toolTips.init();
	
	// misc user-interface elements
	$('#search-member-type').bind(
		'change',
		function(){
			if ( this.value != '' )
				document.location = 'http://' + document.domain + this.value;
		}
	);

	window.unload = function() {
		EventCache.flush();	
	};

});