// JavaScript Document
$(function(){
	$("body").append("<div id='glayLayer'></div><div id='overLayer'></div>");
	
	//モーダルウインドクリックで隠す
	$("#glayLayer").click(function(){
		$(this).hide();
		$("#overLayer").hide();
	});
	
	$("#overLayer").click(function(){
		$(this).hide();
		$("#glayLayer").hide();
	});
	
	$("a.modal").click(function(){
		$("#glayLayer").show(200);
		$("#overLayer").show(200).html("<img src='" + $(this).attr("href") + "' /><p class='white'><< 画面クリックで戻る</p>");
		return false;
	});
	
	if($.browser.msie && $.browser.version<7){
		$(window).scroll(function(){
			$("#glayLayer").css('top',$(document).scrollTop());
			$("#overLayer").css('top',$(document).scrollTop() + $(window).height()/2 + "px")
		});
	}
});
