/*
==============================================================================
	フレーム内リンク対策
==============================================================================
*/
if(self !=top){
	top.location.href=self.location.href;
}

/*
==============================================================================
	contact
==============================================================================
*/

function wo_contact() {
	window.open('https://gt113.secure.ne.jp/~gt113078/contact/index.html','anotherwindow','width=900, height=800, menubar=no, toolbar=no, scrollbars=yes');
}

/*
==============================================================================
	Interface elements for jQuery
==============================================================================
*/

jQuery(document).ready(function($) {
	$(function() {
		/*
		---------------------------------------------
			scrollTo
		---------------------------------------------
		*/

		$('.goto_top a').click(function(){
			$.scrollTo( $('body'), {speed:600,axis:'y', queue:true} );
			return false;
		});

		/*
		---------------------------------------------
			lightbox
		---------------------------------------------
		*/

		$('.lightbox a').lightBox();

//		$(".entrybody a[@href^='/wp/wp-content/'] img").parent().lightBox();
		$(".entrybody a img").parent().lightBox();

		/*
		---------------------------------------------
			onclick - active menu
		---------------------------------------------
		*/
/*
		$('#ln_history').attr("class", "current-cat");

		$('#local_nav li').click(function(){
			var temp = $(this).attr("id");
			$('#local_nav li').attr("class", "");
			$(this).attr("class", "current-cat");
		});
*/
	});
});



