
$(document).ready(function() {
	var myDate = new Date();
	var hours = myDate.getHours();
	var minutes = myDate.getMinutes();
	if (minutes < 30) { minutes = '00' } else { minutes = '30' }
	var displayTime = 'hour-' + hours + '-' + minutes;
	
	newlocation = window.location.href.split('#')[0];
	newlocation = newlocation  + '#' + displayTime;
	window.location.href = newlocation;
});
