Cufon.replace('h1');

/**
 * variabelen met jQuery met een $ beginnen!!!
 */
function DOMinit()
{
	Cufon.now();
	
	// formulier focus op velden
	$(":input").not("input[type=button], input[type=submit], input[type=radio], input[type=checkbox]")
		.focus(function() 	{ $(this).addClass("veldfocus"); })
		.blur(function() 	{ $(this).removeClass("veldfocus"); });

	// menu effectje
	$("#menu a").hover(
		function(){ $(this).stop().animate({ paddingLeft: 30, paddingRight: 50 }, 200); },
		function(){	$(this).stop().animate({ paddingLeft: 40, paddingRight: 40 }, 200);	}
	);		
	
	// footer effectje
	$("#footer .merken a")
		.css("opacity", 0)
		.hover(
			function(){	$(this).stop().animate({ opacity: 1 });	},
			function(){	$(this).stop().animate({ opacity: 0 });	}
		);
}