// JavaScript Document


$(function() {

// プロモーションエリア（Safari2個別対応）
	if (jQuery.browser.safari && jQuery.browser.version < 500) {
		$('#home_container div.home_bnr_container').css('display','none');
		$('#home_container div.home_bnr_container div.home_bnr_box ul.clearfix li:gt(2)').remove();
		$('a.prev img, a.next img','#home_container div.home_bnr_container').remove();
	} else {
		$("#slider").jCarouselLite({
			btnNext: '.next',
			btnPrev: '.prev',
			auto: 4000,
			speed: 1250
		});
	}
});

