

$(document).ready(function() {
	logo();
	pane();
	offerte();
});

function logo()
{
	$("#logo").hide();
	$("#logo").fadeIn(2000);     
}

function pane()
{
	$(".box").hide();
	$(".box").fadeIn(2000);
}

function offerte()
{
	$("#side .inhoud .offerte").bind("mouseenter mouseleave", function(e){
		$(this).toggleClass("high");
	});
    
	$("#side .inhoud .offerte").bind("click", function(e){
		window.open('/pagina/254/offerte.html','_self');
	});

}

