$(function() {
	$('a').click(function() { 
		var jumpTo = $(this).attr('href'); 
		if(jumpTo == '#pagebody') { 
		$(document.body).ScrollTo(1200, 'easein'); return false; 
		} 
		else if(jumpTo.charAt(0) == '#') { 
		$(jumpTo).ScrollTo(1200, 'easein'); return false; 
		}
	});
 	$('div#pageNav ul li ul li:last-child').addClass('last-child');		
	// addClass 'last-child' on last elements of div#pageNav's 4th children (li)
	$('a.exLink').click(function() {
		window.open(this.href,'_blank');
		return false;
	});
	$('.sightImg a').lightBox({
		overlayBgColor: '#000',
		overlayOpacity: 0.7,
		imageLoading: '../img/lightbox/loading.gif',
		imageBtnClose: '../img/lightbox//close.gif',
		imageBtnPrev: '../img/lightbox//prev.gif',
		imageBtnNext: '../img/lightbox//next.gif',
		containerResizeSpeed: 350,
		txtImage: '写真',
		txtOf: 'の'
   });
});
//jQuery global Function