/**
 * fd
 * desciption:
 *
 *
 * @author communicatie bureau fourdesign_ Menno Tempelaar
 *
 *
 */

$(document).ready(function () {

	var fd = new function () {

		var self			= this;
		var instances		= [];

		var _construct = function () {
			$('.fd_menu').each(function () {
				instances.push(new fd_menu(self, this));
			});
		
			$('.fd_header').each(function () {
				instances.push(new fd_header(self, this));
			});
			
			$('.fd_form').each(function () {
				instances.push(new fd_form(self, this));
			});
		};

		_construct();

	}();

});
