// JavaScript Document

window.addEvent('domready', function() {
	
	
	/* Index Band Pic */
	$$('#conTeaserBand a img').each(function(e){
		$picsrc = e.getProperty('src').replace(/\.jpg/, "_SW.jpg");
		e.getParent('a').setStyle('background-image', 'url('+$picsrc+')' );
		//alert($picsrc);
	});
	$$('#conTeaserBand a img').set('tween', {duration: 1300});
	$$('#conTeaserBand a img').fade(.01);	
	$$('#conTeaserBand a img').addEvent('mouseover' , function(){
				this.fade('in');
	});
	$$('#conTeaserBand a img').addEvent('mouseout' , function(){
				this.fade(.01);										 
	});

/* Index Left */
	$$('#conTeaserLeft a img').each(function(e){
		$picsrc = e.getProperty('src').replace(/\.jpg/, "_SW.jpg");
		e.getParent('a').setStyle('background-image', 'url('+$picsrc+')' );
		//alert($picsrc);
	});
	$$('#conTeaserLeft a img').set('tween', {duration: 1300});
	$$('#conTeaserLeft a img').fade(.01);	
	$$('#conTeaserLeft a img').addEvent('mouseover' , function(){
				this.fade('in');
	});
	$$('#conTeaserLeft a img').addEvent('mouseout' , function(){
				this.fade(.01);										 
	});
	
	/* Index Right */
	$$('#conTeaserRight a img').each(function(e){
		$picsrc = e.getProperty('src').replace(/\.jpg/, "_SW.jpg");
		e.getParent('a').setStyle('background-image', 'url('+$picsrc+')' );
		//alert($picsrc);
	});
	$$('#conTeaserRight a img').set('tween', {duration: 1300});
	$$('#conTeaserRight a img').fade(.01);	
	$$('#conTeaserRight a img').addEvent('mouseover' , function(){
				this.fade('in');
	});
	$$('#conTeaserRight a img').addEvent('mouseout' , function(){
				this.fade(.01);										 
	});

});
