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

$(document).ready(function () {

	var fd = new function () {

		var self			= this;
		var instances		= [];
		
		this.imageResizer 	= new fd_imageResizer(self);

		var _construct = function () {
			$(document).find('div.fd_header').each(function () {
				instances.push(new fd_header(this));
			});
			
			$('.fd_imageResizer').each(function () {
				self.imageResizer.add(this);
			});
		};

		_construct();

	}();

});
