	$(document).ready(function() { 
	/*        *   Examples - images        */
        $(".popup-link").fancybox();
		$("a.inquare-form-link").fancybox({ 
			'padding': 0,
			'autoScale': false,
			'transitionIn': 'none',
			'transitionOut'	: 'none'
			}); 
			
		$("#services-form").validate({
			rules: { 
				name: "required", 
				email: { 
					required: true, 
					email: true },
				phone: "required",
				captcha: "required" },
				
			messages: {
				name: "Обязательное поле",
				email: {
					required: "Обязательное поле",
					email: "Укажите адрес эл. почты"},
				phone: "Обязательное поле",
				captcha: "Обязательное поле"
					}        
			});   
});
