function MenuHome()
{
	var _that = this;
	
	var _show = function (e)
	{
		var element = $(e.currentTarget).find('.options');
		$(element).stop().animate(
			{
				'height' : '220px'
			},
			'fast'
		);

		$(element).find('.title > a').addClass('active');
	};

	var _hidden = function (e)
	{
		var element = $(e.currentTarget).find('.options');
		$(element).stop().animate(
			{
				'height' : '40px'
			},
			'slow'
		);

		$(element).find('.title > a').removeClass('active');
	};

	var _constructor = function ()
	{
		$('#home .boxes .item').hover(_show, _hidden);
	};	

	_constructor();
}

