$(document).ready(function(){
	
	
	$('div.btnGrootverpakking').click(function(e){
		e.preventDefault();
		window.location.href = $(this).children().find('a').attr('href');
	});
	
	
	// ================
	// = SLIDER PROMO =
	// ================
	$("ul li:nth-child(1)").addClass("active");
	$('div#promoSlider').bxSlider({
		auto: true,
		pager: false,
		controls: false,
		pause: 7000,
		onBeforeSlide: function(currentSlide, totalSlides){
			$("ul li").removeClass("active");
			$("ul li:nth-child("+(currentSlide+1)+")").addClass("active");
		}
	  });
	
	
	// ===================
	// = CLICKS ON TILES =
	// ===================
	$("div.tile").click(function(e){
		if($(this).find('a').attr('href')!=undefined && !$(this).hasClass('noJSClick')){
			e.preventDefault();
			window.location.href = $(this).find('a').attr('href');
		}
	})	
});
