

$(document).ready(function() {
if ($('#weatherDiv') && $('iframe[name="weatherIframe"]') && location.host.indexOf('sevab') != -1) {
		$('iframe[name="weatherIframe"]').each(function() {
			$(this).attr('src', $(this).attr('longdesc')) ;
			$(this).removeAttr('longdesc') ;
		}) ;
		$('#weatherDiv').show() ;
	}

});