window.addEvent('domready', function() {

/****************************************************************

 Created by Josh Reid for Three Sixty Degrees Ltd Copyright 2008 

****************************************************************/
	
	var tipMe = new Tips($$('.styleTip','.prodItem'), {
		showDelay: 400,
		offsets:{'x': 10, 'y': -55},
		
		initialize:function(){
			this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 600, wait: false}).set(0);
		},
		onShow: function(toolTip) {
			this.fx.start(.9);
		},
		onHide: function(toolTip) {
			this.fx.start(0);
		}
	});
	
	var tipMe2 = new Tips($$('.normTip'), {
		showDelay: 400,
		className:'norm',
		
		initialize:function(){
			this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 600, wait: false}).set(0);
		},
		onShow: function(toolTip) {
			this.fx.start(.9);
		},
		onHide: function(toolTip) {
			this.fx.start(0);
		}
	});
	
/* END DOM READY */	
});

