$(document).ready(function() {
	//get weather
	$.get("/ajax/weather.php", function(res) { $("#weather .weather").html(res); });

	//set clock
	window.setInterval((function () {
		var d = new Date();
		var t = new Array("Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag");
		var m = d.getMinutes();
		
		$("#clock").html(d.getHours()+(d.getSeconds() % 2 ? ":" : "<span style=\"visibility: hidden;\">:</span>")+(m.toString().length == 1 ? "0"+m : m)+" Uhr");}), 250);
});
