var App = App || {};
App.config = App.config || {};

// Animate project description
App.config.projectHover = {
	// duration of project description showing in miliseconds
	showTime: 150,
	
	// duration of project description showing in miliseconds
	hideTime: 150
};

// Animate the mailto icon
App.config.mailHover = {
	// duration of the animation on hover
	inTime: 100,
	
	// duration of the animation on hover lost
	outTime: 100
}

// Animate projects prev/next links
App.config.projectsNavigation = {
	// duration of the arrow moving up
	slideUpTime: 100,

	// duration of the arrow moving down
	slideDownTime: 100
};

// Show / hide projects' details
App.config.project = {
	// duration of scrolling to the project
	scrollTime: 200,

	// delay between start of fadeout of the old project
	//   and fade in of the new project
	fadeDelay: 100,

	// project's fade in duration
	fadeInTime: 400,

	// project's fade out duration
	fadeOutTime: 400,

	// time of cotntrols showing
	controlsInTime: 100,

	// time of controls hiding
	controlsOutTime: 100

}
