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

var FAQItem = {	
	Triggers: null,
	Close: null,
	init: function() {
		var cc = this;
		cc.Triggers = $('#FaqItems a.trigger');
		cc.Close = $('#FaqItems a.close');
		cc.events();	
		cc.render();
	},	
	events: function() {
		var cc = this;
		cc.Triggers.bind('click', function() {
			var item = $(this).parent().parent();
			item.addClass('item-active');
			return false;
		});
		cc.Close.bind('click', function() {
			var item = $(this).parent().parent();
			item.removeClass('item-active');
			return false;
		});
	},
	render: function() {
		var cc = this;
	}
};
