$(document).ready(function(){
	
	$('div#lay').pngFix( );
	
	$("#contactForm").validate({
		rules: {
			nome: "required",
			cognome: "required",
			email: {
				required: true,
				email: true
			},
			telefono: "required",
			message: "required"
		}
	});
	
	$("#newsletterForm").validate({
		rules: {
			email: {
				required: true,
				email: true
			}
		}
	});

	$('a[rel*=facebox]').facebox({
                        //next_image    : 'img/icon/next.gif',
                        //play_image    : 'http://famspam.com/images/icons/small/fast_forward.png',
                        //pause_image   : 'http://famspam.com/images/icons/small/fast_forward.png',
                        //prev_image    : 'img/icon/prev.gif'
						 

                      });

	 /*$.facebox.settings.opacity = 0.2; add this line */ 
	
	
	
	
	$("a.link_to").animate({
		backgroundColor: '#552d00',
		color: '#fff'
	}, 20);

	$("a.link_to").hover(
		function () {
			$(this).animate({
				backgroundColor: '#ff8800',
				color: '#fff'
			}, 100);
		}, 
		function () {
			$(this).animate({
				backgroundColor: '#552d00',
				color: '#fff'
			}, 100);
		}
	);


	
	$(".news_big a img, .news_small a img, #info a img, .cd_small a img, .gallery a img, .video a img").animate({
		borderTopColor: '#552d00',
		borderBottomColor: '#552d00',
		borderLeftColor: '#552d00',
		borderRightColor: '#552d00'
	}, 20);
    
	
	$(".news_big a img, .news_small a img, #info a img, .cd_small a img, .gallery a img, .video a img").hover(
		function () {
		$(this).animate({
		borderTopColor: '#ff8800',
		borderBottomColor: '#ff8800',
		borderLeftColor: '#ff8800',
		borderRightColor: '#ff8800'
		}, 200);
		}, 
		function () {
			$(this).animate({
		borderTopColor: '#552d00',
		borderBottomColor: '#552d00',
		borderLeftColor: '#552d00',
		borderRightColor: '#552d00'
	}, 200);
		}
	);

	
	
	});

	
