// ===========================================

// Common JS

// ===========================================


// scroll
// -------------------------------------------

$(document).ready(function() {
  $("a[href*='#']").easingScroll({
		easing: "easeOutQuad"
	});
});


// rollover
// -------------------------------------------

$(document).ready(function() {
  $('.over, #global-navi a img, form input:image').rollover();
});



// form
// -------------------------------------------

$(document).ready(function() {
    $("form input[type='text'], textarea").focus(function() {
	      $(this).addClass("focus");
    });
    $("form input[type='text'], textarea").blur(function() {
	      $(this).removeClass("focus");
    });

    $(".submit input[type='submit'], .submit input[type='button']").hover(
		function() {
	      $(this).addClass("hover");
    },
		function() {
	      $(this).removeClass("hover");
    });
});


// Blank
// ----------------------------------------------------------

$(function() {
  $("#main a.blank").each(function(i) {
		$(this)
			.attr('target','_blank')
			.attr('title','リンク先が別ウィンドウで開きます');
  });
});
