$(document).ready(function() {
	/* Set active tab */
	$(".row-tabs li").each(function() {
		if ($(this).hasClass("act")) {
			var link = $(this).find("a:first").attr("href");
			if (link) { 				
				$(this).html("<span><span>" + $(this).text() + "</span></span>");
				$(this).click(function() {
					window.location = link;
				});
				$(this).find("span:first").css("cursor", "pointer");
			}
		}
	});
	
	/* Carousel */
	$(".fade").innerfade({
		animationtype: 'slide',
		speed: 'slow',
		timeout: 5000,
		type: 'sequence',
		containerheight: '70px'
	});
	
	$('a.btn-rnd-red:has(input),a.btn-rnd-wh:has(input)').click(function(){
	    $(this).parents('form:first').submit();
	    return false;
	});
	
	// Doorsturen
	$("#btn-doorsturen").toggle(function() {
		$("#pageForward").slideDown();
	},
	function() {
		$("#pageForward").slideUp();
	});
});
