var weatherButton = $('#weather p img');
var weatherData = '<div id="iframe"><iframe src="http://www.weeronline.nl/Go/ExternalWidgets/TwoDaysCity?gid=4058357&activityType=0" scrolling="no" frameborder="0"></iframe></div>';
var weaterDiv = $('#weather');

$(window).load(function () {
	loadWeather();
	bindEvents();
});

function loadWeather (){
	$(weaterDiv).append(weatherData);
}

function bindEvents() {
	$(weatherButton).bind({
		mouseover: function() {
			$('#iframe').show();
		},
		mouseout: function() {
			$('#iframe').hide();
		}
	});
}
