window.addEvents({
	'domready': function(){
		/* thumbnails example , div containers */
		new SlideItMoo({
					overallContainer: 'SlideItMoo_outer',
					elementScrolled: 'SlideItMoo_inner',
					thumbsContainer: 'SlideItMoo_items',		
					itemsVisible:5,
					duration:300,
					autoSlide: 3000,
					itemsSelector: '.SlideItMoo_element',
					itemWidth: 136,
					showControls:0});
	}
});

window.addEvent('domready', function() {
var customTips = $$('.tooltip');

var toolTips = new Tips(customTips, {
	
	className: 'anything', //default is null
	
	//this sets the x and y offets
	offsets: {
		'x': 16,       //default is 16
		'y': 0        //default is 16
	},
	
	//this determines whether the tooltip
	//remains staitionary or follows your cursor
	//true makes it stationary
 	fixed: false,      //default is false
	
	//if you call the functions outside of the options
	//then it may "flash" a bit on transitions
	//much smoother if you leave them in here
	onShow: function(toolTipElement){
	    //passes the tooltip element
		//you can fade in to full opacity
		//or leave them a little transparent
    	toolTipElement.fade(1);
	},
	onHide: function(toolTipElement){
    	toolTipElement.fade(0);
	}
});
});
