Event.observe(window, 'load', function(){
    
	document.getElementsByTagName("BODY")[0].id = 'document_body';
	resizeMain();
	Event.observe(window, 'resize', resizeMain);
	
	if(getCookie("100902_popup") == ''){
		new Draggable("100902_popup",{scroll:window, endeffect:function(){}});
		new Effect.Grow("100902_popup", {duration:1.0});
	}


//	if(getCookie("091201_popup") == ''){
//		new Draggable("091201_popup",{scroll:window, endeffect:function(){}});
//		new Effect.Grow("091201_popup", {duration:1.0});
//	}

})

function resizeMain(){
    $("main").style.width = ($('document_body').clientWidth +"px");
}