/*var Tips2 = new Tips($$('.Tips2'), {
	initialize:function(){
		this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
	},
	onShow: function(toolTip) {
		this.fx.start(1);
	},
	onHide: function(toolTip) {
		this.fx.start(0);
	}
});*/
window.addEvent('domready',function()
{
    var Tips1 = new Tips('.Tips2',{
        showDelay: 400,
        hideDelay: 400,
        fixed:false
    });
    var Tips2 = new Tips('.Tips3',{
        showDelay: 400,
        hideDelay: 400,
        fixed:false
    });
    Tips1.addEvent('onShow', function(tip){
        tip.fade('in');
    });
    Tips1.addEvent('onHide', function(tip){
        tip.fade('out');
    });
    Tips2.addEvent('onShow', function(tip){
        tip.fade('in');
    });
    Tips2.addEvent('onHide', function(tip){
        tip.fade('out');
    });
    if(document.getElementById('tipsnw') != null){
        $('tipsnw').store('tip:title', 'Newsletter');
        $('tipsnw').store('tip:text', 'Envianos tu email y recibe nuestra newsletter quincenal');

    }
    if(document.getElementById('tipsop') != null){
        $('tipsop').store('tip:title', 'Ultimas convocatorias');
        $('tipsop').store('tip:text', 'Ultimas convocatorias de oposiciones publicadas en opobusca.com');
    }
    if(document.getElementById('tipsun') != null){
        $('tipsun').store('tip:title', 'Ultimas noticias');
        $('tipsun').store('tip:text', 'Las noticias mas recientes publicadas en el blog de Master-D');
    }
    if(document.getElementById('tipsnu') != null){
        $('tipsnu').store('tip:title', 'Nube de tags');
        $('tipsnu').store('tip:text', 'Aqui mostramos lo mas buscado en nuestra web');
    }
    if(document.getElementById('tipsref') != null){
        $('tipsref').store('tip:title', 'Premio a tu fidelidad');
        $('tipsref').store('tip:text', 'Descuento especial');
    }
});
	
	