 $(document).ready(function() {

	// open all new-win links in new window, and add them new-win icon
	$("a.new").addClass('new-icon');
	$("a.new").click(function() {
		window.open(this.href);
		return false;
	});

	// get weather from google
	$.getJSON($tpldir+'weather.php', function(data) {
		for (day=0;day<=2;day=day+1) {
			$('#weatherbox .w'+day+' img').attr("src",$tpldir+"img/weather/" + data[day].icon + "");
			$('#weatherbox .w'+day+' img').attr("alt",data[day].condition);
			$('#weatherbox .w'+day+' span').html(data[day].high);
		};
	});

 });
   

