

$(function() {
	$('#gallery a').lightBox({fixedNavigation:true});
});
	// 1. マウスオーバーで画像を変更
$(function(){
	$('a img').hover(function(){
        $(this).attr('src', $(this).attr('src').replace('_off', '_on'));
		}, function(){
        	if (!$(this).hasClass('currentPage')) {
        	$(this).attr('src', $(this).attr('src').replace('_on', '_off'));
        }
   });
});

		$(function(){
			$(window).scroll(function(){
				var menuTop = $(document).scrollTop()-$("#nav").offset().top+10;
				if(menuTop<0){
					menuTop=0;
				}
				$("#nav ul").stop().animate({
					top : menuTop+"px"
				}, 'fast','swing');
			});
		});



$(function() {
  /* Default Style */
  $('a.title').cluetip({splitTitle: '|'});
  /* jTip Theme */
  $('span[@title]').css({color:'#0075d9',borderBottom: '1px solid #0075d9'}).cluetip({splitTitle: '|',arrows: true,dropShadow: false,cluetipClass: 'jtip'});
  /* Rounded Corners Theme */
  $('a.round').cluetip({splitTitle: '|', dropShadow: false, cluetipClass: 'rounded', positionBy: 'mouse'});
});
