/* site js */
/* ================================================================ */

//スライドショー
function slideSwitch1() {
    var $active = $('#main_image img.active');
    if ( $active.length == 0 ) $active = $('#main_image img:last');
    var $next =  $active.next().length ? $active.next()
        : $('#main_image img:first');
    $active.addClass('last-active');
    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 1000, function() {
            $active.removeClass('active last-active');
        });
}
$(function() {
	$('#main_image').css({opacity: 1.0});
	setInterval( "slideSwitch1()", 4800 );
});

//ボックス全体を選択可能に
(function($) {
	$(function() {
		$(".home_wrap1112").click(function(){
			window.location=$(this).find("a").attr("href");
			return false;
		});
		$(".home_wrap1112").hover(function(){
			$(this).addClass("box_hover");	
			},
			function(){
			$(this).removeClass("box_hover");	
		});
	});
})(jQuery);



