// JavaScript Document
$(document).ready(function(){
						   

var in_time = .3; // 何秒後

  $(".ex_link").click(function(){
  
	$url = this.href;// 移動するアドレス
	$("#fixed_footer_top").animate({height: "toggle"},"fast");
	var mnt = 0; // 何秒後
	$(function(){
	  setTimeout(function(){
		$("#over_wrapper").fadeOut("slow",
		  function(){
			location.href = $url;
		  }
		);
	  },mnt*1000);
	});
  });
  
  return false;
 
  
});



function myNewWindow()
{
var w = ( screen.width-720 ) / 2;
var h = ( screen.height-850 ) / 2;
$(".newWindow")
  .click(function()
  {
	var $url = this.href;
	window.open($url, "", 'width=720,height=850,scrollbars=yes',',status=no' +",left="+w+",top="+h); return false;  
  }
 
);}
