$(document).ready(function() {
  $('.weather').click(function() {
	  $('#weatherslide').animate({'right':'0px'}, 100, 'swing');
  });
  $('.weatherclose').click(function() {
	  $('#weatherslide').animate({'right':'-321px'}, 100, 'swing');
  });
});


