jQuery(function(){
	jQuery("input:submit,input:button,.button").button();
});

setInterval(function(){jQuery.ajax({url:'/bdna-weather.htm',success:function(data){jQuery("#weather").html(data);}});},60000);

function close_this(css_class)
{
	var opa = jQuery("."+css_class).css("opacity");
	if(opa=="0.7") var newopa = 0.2;
	else var newopa = 0.7;
	
	jQuery("."+css_class).fadeTo("medium",newopa);
	if(newopa==0.7)
	{
		jQuery("."+css_class+":eq(1)").fadeTo("medium",1.0);
	}
}

