
		
		// jQuery ------------------------------------
		
		
		$(document).ready(
			
			function(){	
				
				//$.cookie("weatherAppId", null); // Clears the cookie, use this to preview
				
				if( $.cookie("weatherAppId") == null || $.cookie("weatherAppId") == "" ){
					
					var wa_randomImageId = Math.floor(Math.random()*4)+1;
					$.cookie("weatherAppId", wa_randomImageId, { expires:1 });
				
				}
				
				$('#weatherApp #wa_weather_1').hide();
				$('#weatherApp #wa_weather_2').hide();
				$('#weatherApp #wa_weather_3').hide();
				$('#weatherApp #wa_weather_4').hide();
				
				$('#weatherApp #wa_weather_'+$.cookie("weatherAppId")).show();
				
			}

		)
		
		
		
