$(document).ready(function(){
   $(".clickableItem").click(function(){
   location.href = $("a", this).attr("href");
   });
   
   $(".clickableItemPop").click(function(){
   window.open($("a", this).attr("href"), 'Ridderheims', '');
   });
   
   $(".clickableItemRight").click(function(){
   location.href = $("a", this).attr("href");
   });
   
   $(".clickableItemPopRight").click(function(){
   window.open($("a", this).attr("href"), 'Ridderheims', '');
   });
	
	$("#formCamp").validate();
	
	$(".reset").click(function(){
		$("#formCamp label.error").css("display", "none");
		$("#formCamp input.error").removeClass("error");
		$("#formCamp textarea.error").removeClass("error");		
	});
	
 });
