/* Using jQuery For The Animation */
$(function() {
	// set opacity to nill on page load
	$("#g_navi li").css("opacity","0");
	// on mouse over
	$("#g_navi li").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 1
		}, 'fast');
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0
		}, 'fast');
	});
});

$(function() {
	// set opacity to nill on page load
	$("#g_navi li").css("opacity","0");
	// on mouse over
	$("#g_navi li").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 1
		}, 'fast');
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0
		}, 'fast');
	});
});

/* opacity-rollover */
$(function() {

  $('#header #right img ').opOver(1.0,0.7,200,100);
  $('#bnr a img ').opOver(1.0,0.7,200,100);
  $('#calendar_bnr img ').opOver(1.0,0.8,200,100);
  $('#common_side_box_02 img ').opOver(1.0,0.8,200,100);
  $('#top_box_01 img ').opOver(1.0,0.7,200,100);
  $('#pagetop img ').opOver(1.0,0.7,200,100);
  $('.box a img ').opOver(1.0,0.7,200,100);
  $('.photo3 a img ').opOver(1.0,0.7,200,100);
  $('#wano_yu a img ').opOver(1.0,0.7,200,100);
  $('#youno_yu a img ').opOver(1.0,0.7,200,100);

});

