$(document).ready(
	function(){
		$("#left_menu img").hover(function(){
			$(this).fadeTo("fast", 0.0); // マウスオーバーで透明度を0%にする
		},function(){
			$(this).fadeTo("fast", 1.0); // マウスアウトで透明度を100%に戻す
		});
	});

jQuery(document).ready(function($) {
	$('a').focus(function(){this.blur();});
});

$(function() {
    $('#main_pic_wrapper').cycle({
        fx: 'fade',
        speed: 300,
        height: 341,
        width: 509,
        timeout: 0,
        pager: '.thum_box',
        pagerEvent: 'mouseover',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '.thum_box a:eq(' + (idx) + ')';
        }
    });
});