Controller =
{
	init : function()
	{
		Controller.behavior();
	},

	behavior : function()
	{
		$('.info').click(function(e)
		{
			e.preventDefault();
			$(this).siblings('.infodetail').toggleClass('active');
			$(this).toggleClass('close');
		});
	}
}


$(function()
{
	Controller.init();
});
