// JavaScript Document

$().ready(function(){
	//	背景画像を画面いっぱいに表示する
	$("body").append("<img src='templates/skole_eu/img/reSF004_L.jpg' id='supersize' />");
	
	var w = $(window).width();
	var h = $(window).height() > $("#container").height() ? $(window).height(): $("#container").height();
	
	$("#supersize").css({
		"width": w
		, "height": h
		, "position":"fixed"
		, "top":"0"
		, "left":"0"
		, "z-index":"-100000"
	});
});
