$(document).ready(function(){
	$("img").hover(
		function() {
			$(this).stop().animate({"opacity": "0.6"}, "400");
		},
		function() {
			$(this).stop().animate({"opacity": "1"}, "600");
		}
	);
	
	

	
	$("#contact-mail-page").validate();
		
	// fancybox
	$("a.fancybox").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity'	: .8, 
		'autoDimensions' : true,
		'width'	: 860, 
		'centerOnScroll' : true,
	});

});

// Font color animation 
$(document).ready(function(){
	$(".second a").stop().hover(function() {
		$(this).stop().animate({ color: "#993366" }, 400);
	},
	function() {
		$(this).animate({ color: "#d5d5d5" }, 500);
	});     
});


// Scroll To
$(document).ready(function(){
	$(".scrollto").click(function() {
		$.scrollTo($($(this).attr("href")), {
			duration:1000
		});
		return false;
	});
	
});
