jQuery(function( $ ){
	$('div.onlineleft1').bind("mouseenter",function(){
		$('div.contentonlineleft1').animate({ 
		opacity: "0.91"
		}, 40 );
	}).bind("mouseleave",function(){
		$('div.contentonlineleft1').animate({ 
        opacity: "0.01"
		}, 700 );
	});
	$('div.onlineright1').bind("mouseenter",function(){
		$('div.contentonlineright1').animate({ 
        opacity: "0.91"
		}, 40 );
	}).bind("mouseleave",function(){
		$('div.contentonlineright1').animate({ 
        opacity: "0.01"
		}, 700 );
	});
	$('div.onlinemiddle1').bind("mouseenter",function(){
		$('div.contentonlinemiddle1').animate({ 
        opacity: "0.91"
		}, 40 );
	}).bind("mouseleave",function(){
		$('div.contentonlinemiddle1').animate({ 
        opacity: "0.01"
		}, 700 );
	});
});