function FirstChild(element) {
	//Array of parent elements
	this.root = element;
	var self = this;
	
	this.construct = function() {
		$(self.root).each(function() {
			$(this).children(':first-child').addClass('first-child');
		});
	}
	self.construct();
}