$(document).ready(function() {
	$('.scrollPage').click(function() {
		var elementClicked = $(this).attr("href");
		var destination = $(elementClicked).offset().top;
		$("html:not(:animated),body:not(:animated)").animate({scrollTop: destination}, 500);
		return false;
	});
	
	$('.wrap').hover(function() {
		$(this).children('.info').stop(true, true).fadeIn(300);
	}, function() {
		$(this).children('.info').stop(true, true).fadeOut(1000);
	});	
	
	$('.footer_social_media a').animate({"opacity": .7 });
	$('.footer_social_media a').hover(function() {
		$(this).stop().animate(	{
			"opacity": 1
		});
		}, function() {
			$(this).stop().animate(	{
				"opacity": .7
			});
	});
	
	$('.social_media a').animate({"opacity": .7 });
	$('.social_media a').hover(function() {
		$(this).stop().animate(	{
			"opacity": 1
		});
		}, function() {
			$(this).stop().animate(	{
				"opacity": .7
			});
	});
});
