// 共通jQuery処理
$(document).ready(function(){
	
	// サイド共通バナーのフェード処理
	$(".over").hover(  
		function(){
			$(this).fadeTo(200,0.65);  
		},  
		function(){
			$(this).fadeTo(0,1);  
		}  
	);  
	
});
