// JavaScript Document
window.addEvent('domready', function(){
	  // TOOLTIPS
	  $$('a.tipz').each(function(element,index) { 
		//var content = element.get('title').split('::'); 
		element.store('tip:title', ''); 
		//element.store('tip:text', content[0]); 
		element.store('tip:text', element.get('title'));
	  }); 
	  var tipz = new Tips('.tipz',{ 
		className: 'tipz', 
		fixed: false, 
		hideDelay: 50, 
		showDelay: 50 
	  }); 
});


/*
	//call multiBox
	if( $chk( $$('.mb').get('class') ) ) {
		var initMultiBox = new multiBox({
			mbClass: '.mb',//class you need to add links that you want to trigger multiBox with (remember and update CSS files)
			container: $(document.body),//where to inject multiBox
			ignoreDesc: true, 
			descClassName: 'mb',//the class name of the description divs
			path: './Files/',//path to mp3 and flv players
			useOverlay: true,//use a semi-transparent background. default: false;
			maxSize: {w:900, h:800},//max dimensions (width,height) - set to null to disable resizing
			addDownload: true,//do you want the files to be downloadable?
			pathToDownloadScript: './Scripts/forceDownload.asp',//if above is true, specify path to download script (classicASP and ASP.NET versions included)
			addRollover: true,//add rollover fade to each multibox link
			addOverlayIcon: false,//adds overlay icons to images within multibox links
			addChain: true,//cycle through all images fading them out then in
			recalcTop: true,//subtract the height of controls panel from top position
			addTips: true,//adds MooTools built in 'Tips' class to each element (see: http://mootools.net/docs/Plugins/Tips)
			autoOpen: 0//to auto open a multiBox element on page load change to (1, 2, or 3 etc)
		});
	}

*/
