
				var aSites = [
					{
						name:'AutoSkates.com',
						href:'http://www.autoskates.com',
						target: 'top'
					},	
					{
						name:'CarCapsules.com',
						href:'http://www.carcapsules.com',
						target: 'top'
					},
					{
						name:'CarCovers.com',
						href:'http://www.carcovers.com',
						target: '_blank'
					},
					{
						name:'CorvetteBooks.com',
						href:'http://www.corvettebooks.com',
						target: 'top'
					},
					{
						name:'MotorShirts.com',
						href:'http://www.motorshirts.com',
						target: 'top'
					},
					{
						name:'TowDollies.com',
						href:'http://www.towdollies.com',
						target: 'top'
					},
					{
						name:'TrimPart.com',
						href:'http://www.trimpart.com',
						target: 'top'
					},
					{
						name:'VehicleBags.com',
						href:'http://www.vehiclebags.com',
						target: 'top'
					},
					{
						name:'VehicleRamps.com',
						href:'http://www.vehicleramps.com',
						target: 'top'
					}
					/*,
					{
						name:'TracyVette.com',
						href:'http://www.tracyvette.com'
					},
					{
						name:'TracyPerf.com',
						href:'http://www.tracyperf.com'
					},

					{
						name:'ViperParts.com',
						href:'http://www.viperparts.com'
					}
					*/
				]
			
				get_link_nodes = function(aSites){
					var aNodes = [];
					aSites.each( function(site){
						aNodes[aNodes.length] = {
							tag: 'a',
							className: 'menuItem',
							href: site.href,
							target: site.target,
							style: {
								textAlign: 'left',
								margin: '0px',
								padding: '2px',
								width: '100%'
							},
							children: site.name
						}
					
					});
					return aNodes;
				}
				
				var sites = {
					tag: 'span',
					id: 'sites',
					style: {
						zIndex: '1'
					},
					children: [
						{
							tag: 'a',
							className: 'menuItem',
							href: '#',
							style: {
								zIndex: '2'
							},
							children: 'Our Sites'
						},
						{
							tag: 'div',
							id: 'site_menu',
							style: {
								color: '#000;',
								position: 'absolute',
								zIndex: '1',
								top: '28px',
								left: '0px',
								display: 'none',
								width: '150px'
							},
							children: get_link_nodes(aSites)
						}
					]
				}
				

				
				$('menuBar').appendChild( $E(sites) );
				
				$('sites').onmouseover = function(){
					Element.show('site_menu');
				}
				$('site_menu').onmouseout = function(){
					Element.hide('site_menu');
				}
				
				window.onload = function() {
					var menuItems = $('menuBar').childNodes;
					for(i=0; i<menuItems.length; i++){
						if($(menuItems[i]).className == 'menuItem'){
							$(menuItems[i]).onmouseover = function(){
								Element.hide('site_menu');
							}
						}
					}
							
				}				
