// Javascript Document
// Location: /files/js/home_main.js

/* this animation was for the larger display, it has been removed from the page.
$(document).ready(function() {
			
			// hide weather panel after X-seconds if page is idle.
			$('#accuweather').delay(6000).animate({
						height: 'toggle'
					}, 1000, function() {
						// Animation complete.
					});
			
			// toggle display of weather when button clicked
			$('#weatherWidgetButton').click(function() {
					$('#accuweather').animate({
						height: 'toggle'
					}, 1000, function() {
						// Animation complete.
					});
			});
			
						   
});
*/
