$(document).ready(function(){
$('.todayLiving').children('dl:even').attr('style','float:left')
$('.todayLiving').children('dl:odd').attr('style','float:right')
$('#weatherClickYubao').toggle(
	function() {
		$('#weatherYubao2').slideDown();
		$(this).html('点击这里关闭未来4-7天龙口天气预报');
		return false;
	},
	function() {
		$('#weatherYubao2').slideUp();
		$(this).html('点击这里查看未来4-7天龙口天气预报');
		return false;
	}
)	
})

