/* Tips  */

window.addEvent("domready", function(){
	
	if($('compraAnticipada'))
	{
		TipsInit();
		TipsInit($(document.body), ".tipper img"); //Tips para galeria de imagenes	
	}
	
});

function TipsInit(ParentElement, CssClass){
	if(!$defined(ParentElement)){
		ParentElement = $(document.body);
	}
	if (!$defined(CssClass)){
		CssClass = ".Tips";
	}
	var ootips = ParentElement.getElements(CssClass);
	ootips.each(function(item, index, array){
		item.alt = "";
	});
	
	var Tips3 = new Tips($$('.tipper'), {
		showDelay: 400,
		hideDelay: 400,
		className:"tipsdiv",
		fixed: true
	});
	
	$$('.tipper').store('tip:title', '');
	var bodytext = $('compraAnticipada').innerHTML ;
	$$('.tipper').store('tip:text', bodytext);
	

}







