// JavaScript Document

function selectVloersoort(parent, element, nogiets) {
	$(".tarieven").hide(); 
	$("#"+element).fadeIn("slow");
	
	if(element == "Marmoleum FORBO") {
		$("#Marmoleum").fadeIn("slow");
		$("#berekenOfferteNu").fadeIn("slow");
	} else {
		$("#berekenOfferteNu").hide(); 
	}
}

$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
	$("#fotoRob").hover( function() { 
		$("#Rob").fadeIn("fast"); }, function() { 
		$("#Rob").fadeOut("fast"); } 
	);
	
	
	$("#fotoDesiree").hover( function() { $("#Desiree").fadeIn("fast"); }, function() { $("#Desiree").fadeOut("fast"); } );
	$("#fotoJos").hover( function() { $("#Jos").fadeIn("fast"); }, function() { $("#Jos").fadeOut("fast"); } );
	$("#fotoGuido").hover( function() { $("#Guido").fadeIn("fast"); }, function() { $("#Guido").fadeOut("fast"); } );
	$("#fotoDennis").hover( function() { $("#Dennis").fadeIn("fast"); }, function() { $("#Dennis").fadeOut("fast"); } );
	$("#fotoMarco").hover( function() { $("#Marco").fadeIn("fast"); }, function() { $("#Marco").fadeOut("fast"); } );
	 
	 $("#garantie").hover(function() {
		$('#garantieUitleg').show();
			}, function() {
		$('#garantieUitleg').hide();
	});
	
	
});

