jQuery.noConflict();

jQuery(document).ready(function() {							

	/* Font replacement */
	Cufon.replace('#mainmenu ul li a, #submenu ul li a, h1, h2', { hover: true, fontFamily: 'BPreplay' });
	
	/* Commentform validation */
	jQuery(function($) {
		$("#commentform").validate({
			rules:{
     			author:"required",
				comment:"required",
     			email:{
       				required:true,
       				email:true
     			}
   			},
   			messages: {
    	 		author:"Vul aub uw naam in",
				comment:"Vul aub uw reactie in",
				email:{
       				required: "Vul aub uw e-mailadres in",
       				email: "Vul aub een correct e-mailadres in"
     			}
   			}
		});
	});
});
