 $(document).ready(function() {
				
// Roger Daynight.js
// =============================================

today = new Date(); // set today's date
now = today.getHours();
						
var randomnumber=Math.floor((Math.random()*20+10)/10);
			
if(now >= 6 && now < 17) {	
	// $('#seaview_top').css('background', 'url(/uploads/d5_template/HC_header_day_top_01.jpg) top center no-repeat');
	// $('#seaview_bottom').css('background', 'url(/uploads/d5_template/HC_header_day_bottom_01.png) top center no-repeat');
	$('#seaview_top').css('background', 'url(/uploads/d5_template/HC_header_day_top_0'+randomnumber+'.jpg) top center no-repeat');
	$('#seaview_bottom').css('background', 'url(/uploads/d5_template/HC_header_day_bottom_0'+randomnumber+'.png) top center no-repeat');
	$('#footer').css('background', 'url(/uploads/d5_template/HC_footer_day.png) top center no-repeat');
}	
	
if(now >= 17 && now < 19) {	
	$('#seaview_top').css('background', 'url(/uploads/d5_template/HC_header_evening_top_01.jpg) top center no-repeat');
	$('#seaview_bottom').css('background', 'url(/uploads/d5_template/HC_header_evening_bottom_01.png) top center no-repeat');
	$('#footer').css('background', 'url(/uploads/d5_template/HC_footer_evening.png) top center no-repeat');
}	

if(now < 6 || now >= 19) {
	$('#seaview_top').css('background', 'url(/uploads/d5_template/HC_header_night_top_01.jpg) top center no-repeat');
	$('#seaview_bottom').css('background', 'url(/uploads/d5_template/HC_header_night_bottom_01.png) top center no-repeat');
	$('#footer').css('background', 'url(/uploads/d5_template/HC_footer_night.png) top center no-repeat');
}

// =============================================
// Roger Daynight.js

});
