//------------------
//0110602 t.miura
//------------------
/* Hover Light
========================================== */
$(function() {
	$('.hoverLight').hover(function(){
		$(this).animate({'opacity': '0.85'}, 200);
	}, function(){
		$(this).animate({'opacity': '1'}, 200);
	}).click(function(){
		$(this).animate({'opacity': '1'}, 200);
	});
	
	$('body#home .bannerArea li#marArea').click(function(){
		location.href = $(this).find('.mar-caption a').attr('href');
		return false;
	}).css('cursor', 'pointer');
	
	$('.hoverLight100').hover(function(){
		$(this).animate({'opacity': '0'}, 200);
	}, function(){
		$(this).animate({'opacity': '1'}, 200);
	}).click(function(){
		$(this).animate({'opacity': '1'}, 200);
	});
	
	$('body#home .bannerArea li#marArea').click(function(){
		location.href = $(this).find('.mar-caption a').attr('href');
		return false;
	}).css('cursor', 'pointer');
});
