
/*  ================================================================================
トップ背景スライド
================================================================================  */
$(function(){
	$('#bg_top').bgSwitcher({
		images: ['./images/bg_top.jpg', 1, 3],
		interval: 5000,
		fadeSpeed: 1000,
		resize:true,
		random:true
	}).css({
	height:"100%"
	});
});


/*  ================================================================================
新着情報
================================================================================  */

$(function () {
    $('div.boxLink').click(function () {
        var boxLink = $(this).find('a');
        if (boxLink.attr('target') == '_blank') {
            window.open(boxLink.attr('href'));
        }
        else window.location = boxLink.attr('href');
        return false;
    });
    $('div.boxLink').hover(function () {
        $(this).addClass('hover');
    }, function () {
        $(this).removeClass('hover');
    });
});



