// JavaScript Document

function scrollBack()
{
	$('.promoImg').animate({'height' : '203px' }, 700);
	$('.promoHolder').animate({'height' : '203px' }, 700);
}

function scrollOpen()
{
		$('.promoImg').animate({'height' : '499px' }, 700);
		$('.promoHolder').animate({'height' : '499px' }, 700);
}

function openPage()
		{
			url = 'https://www.tuincentrumhanenburg.nl/webshop/producten/index.php?cat=251&sub=301&group=301';
			document.location = url;
		}



    $(document).ready(function() {
		setTimeout('scrollBack()', 2500);
	});
	
	
