// JavaScript Document
$(document).ready(function() {
	if($(window).height()<=700) {
  $('#allcontent').css({"height":"700px"});
	} else {
		$('#allcontent').css({"height":"100%"})
	}
	if($(window).width()<=1100) {
  $('#allcontent').css({"width":"1100px"});
	} else {
		$('#allcontent').css({"width":"100%"})
	}
});
$(window).resize(function() {
	if($(window).height()<=700) {
  $('#allcontent').css({"height":"700px"});
	} else {
		$('#allcontent').css({"height":"100%"})
	}
	if($(window).width()<=1100) {
  $('#allcontent').css({"width":"1100px"});
	} else {
		$('#allcontent').css({"width":"100%"})
	}
});
