function bgChangeCastleHome(){
	var now = new Date();
	var hour = now.getHours();
		if(hour < 5){
			document.write('<style type="text/css"> body { background:#000000 url(/images/bg-castlehome-night.jpg) top center no-repeat; } </style>');
		}
		else if(hour > 4 && hour < 8){
			document.write('<style type="text/css"> body { background:#000000 url(/images/bg-castlehome-dawn.jpg) top center no-repeat; } </style>');
		}
		else if(hour > 7 && hour < 17){
			document.write('<style type="text/css"> body { background:#000000 url(/images/bg-castlehome.jpg) top center no-repeat; } </style>');
		}
		else if(hour > 16 && hour < 20){
			document.write('<style type="text/css"> body { background:#000000 url(/images/bg-castlehome-dusk.jpg) top center no-repeat; } </style>');
		}
		else if(hour > 19){
			document.write('<style type="text/css"> body { background:#000000 url(/images/bg-castlehome-night.jpg) top center no-repeat; } </style>');
		}

}

function bgChangeSub(){
	var now = new Date();
	var hour = now.getHours();
		if(hour < 5){
			document.write('<style type="text/css"> body { background:#000000 url(/images/bg-sub-night.jpg) top center no-repeat; } </style>');
		}
		else if(hour > 4 && hour < 8){
			document.write('<style type="text/css"> body { background:#000000 url(/images/bg-sub-dawn.jpg) top center no-repeat; } </style>');
		}
		else if(hour > 7 && hour < 17){
			document.write('<style type="text/css"> body { background:#000000 url(/images/bg-sub.jpg) top center no-repeat; } </style>');
		}
		else if(hour > 16 && hour < 20){
			document.write('<style type="text/css"> body { background:#000000 url(/images/bg-sub-dusk.jpg) top center no-repeat; } </style>');
		}
		else if(hour > 19){
			document.write('<style type="text/css"> body { background:#000000 url(/images/bg-sub-night.jpg) top center no-repeat; } </style>');
		}

}
