/*   jquery.tipsy.js   */



$(function() {
$('.tooltip').tipsy({
gravity: 'w', //どこに向かって出るか s,n,w,e
fade: true, //フェードさせるか
fallback: "良い？" //titleではなくscript側で指定したい場合
});
});


/*   news   */

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".news_container").hide(); 

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$("h2.Ntrigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
		return false; //Prevent the browser jump to the link anchor
	});

});



/*   profile   */

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".toggle_container").hide(); 

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$("h2.trigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
		return false; //Prevent the browser jump to the link anchor
	});

});





/*   jquery.bgSwitcher-min.js   */		
		
/* jQuery(function($) {
	$('#bgmain').bgSwitcher({
		images: ['common/images/top/bg_01.jpg', 'common/images/top/bg_02.jpg', 'common/images/top/bg_03.jpg'],
		interval: 6000
	});
}); */	

/*   mouseover   */	

$(document).ready(function(){
	
$(' a img, ')
  .mouseover(function(){
    $(this).animate({opacity: 0.5}, 'fast');
  })
  .mouseout(function(){
    $(this).animate({opacity: 1.0}, 'fast');
  });

});



