

$(function(){
	var slideHeight = 110; // px
	var defHeight = $('#weatherWrap').height();
	if(defHeight >= slideHeight){
		$('#weatherWrap').css('height' , slideHeight + 'px');
		$('#openCast').append('<a href="#">Open Forecast</a>');
		$('#openCast a').click(function(){
			var curHeight = $('#weatherWrap').height();
			if(curHeight == slideHeight){
				$('#weatherWrap').animate({
				  height: defHeight
				}, "normal");
				$('#openCast a').html('Close Forecast');
			}else{
				$('#weatherWrap').animate({
				  height: slideHeight
				}, "normal");
				$('#openCast a').html('Open Forecast');
			}
			return false;
		});
	}
});


 
