/*
 * Luglio7.com
 * main js file
 *
 */
 
var app = {
	
	/* !init function */
	
	init : function()
	{
		var methods = [];
		for(var method in this)
		{
			if(typeof(this[method]['init']) === 'function')
			{
				this[method]['init']();
			}
		}
		
	}

}

/* !focus boxes */

app.focusBoxes = {
	
	init : function()
	{
		$('.home-project, .project-box').focusBoxes({
			easing 		: 'easeInOutQuad',
			duration	: 300,
			opacityMin	: .05
		});
	}

}

/* !preload */

app.imagesPreload = {

	init: function()
	{
		$('img.preload').imagePreload();
	}

}

/* !ready event */

$(document).ready(function(){
	app.init();
});
