// JavaScript Document

$(function() {
	
	/*ロールオーバー*/
	$('.rollover').rollover();						
	
	/*ライトボックス*/
	$('.gallery a').lightBox();
	
	/*ライトボックス*/
	$('.link_img a').lightBox();

	/*ページ内リンク*/
	$(document).ready(function(){
		$('a[href^=#]').click(function(){
				var target;
				target = $( $(this).attr('href') );
				if (target.length == 0) {
						return;
				}
				$('html, body').animate({scrollTop: target.offset().top}, 1500);
				return false;
		});
	});
	
});
