		function gforcesTabs() {

			//  Loop <div>s
			$$('div.domTabs').each( function ( div ) {

				//  Set an id if one isn't present
				div.identify();

				//  Activate first tab
				div.down().firstDescendant().addClassName( 'active' );

				//  Hide all content
				$$( '#' + div.id + ' div.domContent' ).invoke( 'hide' );

				//  Show first content
				$$( '#' + div.id + ' div.domContent' )[0].show();

				//  Loop <li>s
				div.down().childElements().each( function ( li, index ) {

					//  Monitor onclicks
					li.down().observe( 'click', function ( ev ) {

						// stops the click using the HREF
						Event.stop(ev);

						//  Remove all class names
						div.down().childElements().invoke( 'removeClassName', 'active' );

						//  Set active tab
						ev.element().up().addClassName( 'active' );

						//  Hide all content
						$$( '#' + div.id + ' div.domContent' ).invoke( 'hide' );

						//  Show content selected
						$$( '#' + div.id + ' div.domContent' )[index].show();
					});

				});

			});
		}
