$(window).load(function() {
	$('#container div').equalHeights();
});
$(function() {
	var ijzerwarenparagraaf = $('#ijzerwaren_terwolde p').text();
	var kolomlink1 = $('#tuinmeubelen_terwolde h1 a').attr('href');
	var kolomlink2 = $('#ijzerwaren_terwolde h1 a').attr('href');
	var kolomlink3 = $('#vuurwerk_terwolde h1 a').attr('href');
	$('#container p').css('padding-bottom', '0');
	$('#container div').each(function() {
			var linktitel = $('h1 a', this).text();
			$('a', this).remove();
			$('h1', this).html(linktitel);
	})
	$('#tuinmeubelen_terwolde').hover(
		function() {
			$('#container div').not(this).stop().fadeTo(1000, 0.5);
			$(this).css("cursor", "pointer");
			$(this).click(function() {
				$('#container div').stop().fadeTo(1000, 1.0); /* nodig voor touchscreens */
				window.open(kolomlink1,'_self');
			});
		},
		function() {
			$('#container div').stop().fadeTo(1000, 1.0);
		}
	)
	$('#ijzerwaren_terwolde').hover(
		function() {
			$('#container div').not(this).stop().fadeTo(1000, 0.5);
			$(this).css("cursor", "pointer");
			$(this).toggle(function() {
				$('#ijzerwaren_terwolde p').html('De website over Vorderman Tuin/dier/ijzerwaren/hobby is under construction. Kijkt u a.u.b. op onze andere websites over <strong>tuinmeubelen</strong> of <strong>vuurwerk</strong>.');
			},
			function() {
				$('#ijzerwaren_terwolde p').html(ijzerwarenparagraaf);
			});
		},
		function() {
			$('#container div').stop().fadeTo(1000, 1.0);
		}
	)
	$('#vuurwerk_terwolde').hover(
		function() {
			$('#container div').not(this).stop().fadeTo(1000, 0.5);
			$(this).css("cursor", "pointer");
			$(this).click(function() {
				$('#container div').stop().fadeTo(1000, 1.0); /* nodig voor touchscreens */
				window.open(kolomlink3,'_self');
			});
		},
		function() {
			$('#container div').stop().fadeTo(1000, 1.0);
		}
	)
})
