/* This will set the margin of the last child element to '0'. Should be included after the parent element.  */

	$$('#featured a:last-child').each(function (element) {
		element.setStyle({
			margin:'0'
		});
	})
