// plugin weather by me ;)

jQuery.fn.weather = function(options){
 var t=jQuery(this);
 var options = jQuery.extend({
    city: '37850'
  },options);
 $.post('ajax/get_weather.php',{index:options.city},function(data){
       t.html(data);
 });
 
};

