// JavaScript Document
$(function(){
		   
//ロールオーバー用　透明度変更
    $('.hover').hover(
        function() {
            $(this).stop().animate({"opacity":0.65});
        },
        function() {
            $(this).stop().animate({"opacity":1});
        }
    );
	
});





