/* JavaScript Information ===============================
File name: ChgBackground.js
Description:Original Theme for daidojuku.jp
Author:daidojuku(M.Masuko)
Last Editor: Mineaki Masuko
Date: 2011.04.07
=============================================== */

// <![CDATA[
	window.onload = function() {

		dispHeight = $(document).height();
		//alert("dispHeight" + dispHeight);
		//縦600の5%upは630
		if (dispHeight < 630) {
			// no process
		} else if (dispHeight <= 768) {
			$('#whole').css('margin-top', '5%');
		} else if (dispHeight > 768) {
			$('#whole').css('margin-top', '8%');
		}

	}
// ]]>

