window.addEvent('domready', function()
{
//      $$('.teaserimg_cont p.imgtxt').setStyle('display','none');
     
     $$('.teaser').addEvents({
	 mouseover: function(ev){
	     ev.stop();
	     this.getElement('p.imgtxt').addClass('active');	     
	 },
	 mouseout: function(ev){
	     ev.stop();
	    this.getElement('p.imgtxt').removeClass('active');
	     
	 }
    });
      $$('p.imgtxt').addEvents({
	 click: function(ev){
	     ev.stop();
	     var curlink = this.getParent().getElement('a.teaserimg').get('href');
	     if(curlink) window.open(curlink,'_blank');//window.location = curlink;
	     
	 }
    });       
});
