$(document).ready(function(){

	//PRIVACY
	$('.privacy').click(function(e) {
		e.preventDefault();
		$(this).parent().next().toggleClass('no-display');
	});	
	
	//GALLERY
	var big = $($('#big'));
	var empty = big.attr('src').replace('images/gallery/01.jpg', 'images/empty.gif');
	$('#gallery ul img:not(:first)').css({ opacity: 0.5 });
	$('#gallery ul img').click(function(e) {
		e.preventDefault();
		$('.active').css({ opacity: 0.5 });
		$(this).addClass('active').css({ opacity: 1 });
		big.attr('src', empty);
		newPath = $(this).attr('src').replace('t-', '');
		
		var img = new Image();
		$(img).attr({    
			alt: '',
			title: ''
		});
		$(img).load(function() {
			big.attr('src', newPath);
		}).attr('src', newPath);
	});
	
	//FORM
	$("#date").datepicker();
	$('#form').validate({
  	 	rules: {
  	 		name: "required",
  	 		surname: "required",
  	 		visitors: "required",
  	 		email: "required",
  	 		date: "required"
  	 	},
  	 	messages: {
  	 		name: "",
  	 		surname: "",
  	 		visitors: "",
  	 		email: "",
  	 		date: ""
  	 	},
  	 	errorClass: "form-error"
  	});
	
	
});
