// JavaScript Document

 $(function(){
	  $('.link').hover(
      function() {this.src = this.src.replace("_off","_on");},
      function() {this.src = this.src.replace("_on","_off");}
		);
		
		$('.linkM').hover(
      function() {this.src = this.src.replace("_m_off","_on");},
      function() {this.src = this.src.replace("_on","_m_off");}
		);
		//
		$('.socR').hover(
      function() {this.src = this.src.replace("_off","_r_on");},
      function() {this.src = this.src.replace("_r_on","_off");}
		);
		
		$('.socM').hover(
      function() {this.src = this.src.replace("_off","_m_on");},
      function() {this.src = this.src.replace("_m_on","_off");}
		);
		
		$('.soc').hover(
      function() {this.src = this.src.replace("_off","_on");},
      function() {this.src = this.src.replace("_on","_off");}
		);
		
		//
	  $('a[rel*=lightbox]').lightBox();
    $('.testo-event').css({ opacity: 0.5 });
		$('.testo-event img').css({ opacity: 1 });
		$('.testo-event').hover(function(){$(this).css({ opacity: 1 })},function(){$(this).css({ opacity: 0.5 })});
		
	});
