// JavaScript Document

/*

Tapestry Effects Handler

Requires: mooTools 1.1 or later.

This is a wrapper function that activates when the window is ready. It contains all of the functions that involve mooTools.


*/
	
	
	
	profileTips = function() {  
		theseTips =	new Tips($$('.profileElement'),{
								 maxTitleChars: 50,
								 maxOpacity: .9,
								 initialize:function(){
									this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
								},
								onShow: function(toolTip) {
										this.fx.start(1);
								},
								onHide: function(toolTip) {
										this.fx.start(0);
								}
		});
	};
	
	shadowMyBox = function() {
		var options = {
			resizeLgImages:		false,
			handleUnsupported:  'remove',
			type:				'html',
			keysClose:			['c',27]
		}
		
		Shadowbox.init(options);
	
	};



