					
					/* BIG ADMIN BUTTONS HOVER EFFECT */
					
					var list = $$('.main_admin_buttons a'); list.each(function(element) {
						var fx = new Fx.Styles(element, {duration: 200, wait:false});
						element.addEvent('mouseenter', function(){ fx.start({ 'background-color': '#f0f0f0' }); });
						element.addEvent('mouseleave', function(){ fx.start({	'background-color': '#ffffff' });	});
					});
					
					
					
	window.addEvent('domready', function()
		{				
					
			var tips = new Tips($$('.tips'), {
				initialize:function(){
					this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
				},
				onShow: function(toolTip) {
					this.fx.start(.9);
				},
				onHide: function(toolTip) {
					this.fx.start(0);
				}
			});
			
	});

					
					
					
					

