/**include
//_javascript/debug.js;
*/

var localDate = {
	
	init : function () {
	},
	
	onready : function () {
		
		var date = new Date();
		var month = date.getMonth();
		var hour = date.getHours();
		
		if (this.$w0.win.navigator.cookieEnabled) {
			if (!this.$w0.getCookie("flash_month") || this.$w0.getCookie("flash_month") != month) {
				//alert(month);
				this.$w0.setCookie("flash_month", month);
				window.location.reload(true);
			}
			if (!this.$w0.getCookie("flash_hour") || this.$w0.getCookie("flash_hour") != hour) {
				//alert(hour);
				this.$w0.setCookie("flash_hour", hour);
				window.location.reload(true);	
			}
		} else {
			alert("not Enabled!");
		}
	}
}
var loadDate = newObject(localDate);
