$(document).ready(function(){

	//alert('got here');
	$('#lft_scroll').css('opacity', '.3');
	
	
	$(".trigger").hover(function(){
		$(this).fadeTo("fast", 0.4); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo("fast", 1.0); // This should set the opacity back to 60% on mouseout
   		});
   		
   	$(".tonus").hover(function(){
		$(this).fadeTo("fast", 0.4); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo("fast", 1.0); // This should set the opacity back to 60% on mouseout
   		});
   		
   	$(".social").hover(function(){
		$(this).fadeTo("fast", 0.4); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo("fast", 1.0); // This should set the opacity back to 60% on mouseout
   		});		
  
   	
   		$(".scrollButtons").hover(function(){
		$(this).fadeTo("fast", 0.4); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo("fast", 1.0); // This should set the opacity back to 60% on mouseout
   		});
   		
   		
   	

	



 

	});
	


