/**
 * 
 */


		function getCurrWxIndy() {
			alert( "currwxindy");
			$.ajax({ url: "http://api.wunderground.com/api/0059fc2fb5ef101e/geolookup/conditions/q/IN/Indianapolis.json",         
				dataType: "jsonp",         
				success: function(curr_wx_json) {             
					var location = curr_wx_json.location.city;    
					var weather = curr_wx_json.current_observation.weather;  
					var temp_f = curr_wx_json.current_observation.temp_f;  
					var wdir = curr_wx_json.current_observation.wind_dir;
					var wspd = curr_wx_json.current_observation.wind_mph;
					// alert("Current temperature in "+location+" is: " + temp_f + " and the wind is "+wdir+wspd );           

				} 
			}); 
		};



