var tipjs=false;
//var cssT=false;
new Asset.javascript('scripts/tipsx3.js');
//new Asset.css('css/tooltip/tooltip.css',{onload:function(){cssT=true}});*/
var tipscomplete = false
function tipsInit() {
	if(tipjs && tipscomplete == false){ // && cssT
		var theTips = new TipsX3 ($$('.tipper'), {
		showDelay: 0,
		hideDelay: 100,
		offsets: {'x':20,'y':-50},
		fixed:false
		});
		
		var theTipsIconos = new TipsX3 ($$('.tipsiconos'), {
		showDelay: 0,
		hideDelay: 100,
		offsets: {'x':-150,'y':0},
		fixed:true,
		className:'toolIcons'
		});
		
		tipscomplete = true
	}
	else {tipsInit.delay(100)}
}
if(window.attachEvent)
window.attachEvent("onload", tipsInit);
if(window.addEventListener)
window.addEventListener("load", tipsInit, false);
