

jQuery(window).ready(

function () 
{
	new ColumnMenu(jQuery("#file_browser"), menuItems);
});

function goToBackground() {
	new ColumnMenu(jQuery("#file_browser"), 'For your computer');
	}

function ColumnMenu(container, allMenus)
{
	
	
	// Initialize common elements of the column menu
	var column1 = container.find("#col_1"); 	
	var column2 = container.find("#col_2");
	var column3 = container.find("#col_3");
	var previewImage = column3.find("img")[0];
	var instructions_headline = column3.find("#instructions_headline");
	var instructions_detail = column3.find("#instructions_detail");
	
	_fillColumn1();
	
	// test to go directly to a section
	
	
	
	// Initially fill the first column with the top level menues 
	// and the next level of menues that are collapsed
	function _fillColumn1()
	{
		for(var i = 0; i < menuItems.length; i++)
			column1.find("ul")[0].
			appendChild(_getMenuItem(menuItems[i], _column1Click));
		
		_adjustContainerHeight();
	}
	
	// When an item in column 1 is clicked, decide to fill column 2
	// or expand a collapsed menu
	function _column1Click()
	{
		if (this.data.submenus) {
			_fillColumn2(this.data.submenus);
			var current_click = column1.find(".clicked");
			jQuery(current_click).removeClass("clicked");
			jQuery(this).addClass("clicked");
			
		} else {
			_toggleMenu(this);
		}
			
	}
	
	// Expand or collapse a hidden menu for the item
	function _toggleMenu(item)
	{
		
		
		jQuery(item.collapsedMenus).toggle();		
		if (item.expanded)
		{
			item.expandImg.src = "images/expand_menu.gif";
			item.expanded = false;
		}
		else
		{
			item.expandImg.src = "images/collapse_menu.gif";
			item.expanded = true;
		}
		
		_adjustContainerHeight();
	}
	
	// Fill column 2 with the items (called when an item in column 1 is clicked)
	function _fillColumn2(items)
	{
		var list = column2.find("ul");
		list.empty();
				
		for(var i = 0; i < items.length; i++)
			list[0].
			appendChild(_getMenuItem(items[i], _column2Click));
		
		//_adjustContainerHeight();
		_selectColumn(column2);
		_emptyColumn3();
	}
	
	// Fill load the menu item that was clicked in column 2
	function _column2Click()
	{
		_emptyColumn3();
		_fillColumn3(this.data);
		var current_click = column2.find(".clicked");
		jQuery(current_click).removeClass("clicked");
		jQuery(this).addClass("clicked");
	}
		
	function _emptyColumn3()
	{
		column3.find("ul").empty();
		jQuery(previewImage).hide();
		column3.find("h2").addClass("empty");
		jQuery(instructions_headline).empty();		
		jQuery(instructions_headline).hide();
		jQuery(instructions_detail).empty();		
		jQuery(instructions_detail).hide();
		
		column3.find("#linkslist").removeClass("stackedlinkslist");
		column3.find("#linkslist").removeClass("downloadbutton");
		column3.find("#linkslist").removeClass("addtopage_button");
	}
	
	// Fill column 3 with data from column 2
	function _fillColumn3(data)
	{
		var list = column3.find("ul");
		list.empty();
		
		for(var i = 0; i < data.submenus.length; i++)
			list[0].
			appendChild(_getMenuItem(data.submenus[i]));
				
		previewImage.src = data.image;
		jQuery(previewImage).show();
		
		if (data.section)
		{
			_addSectionContent(data.section);
			jQuery(instructions_headline).show();
			jQuery(instructions_detail).show();
		}
		
		column3.find("h2").removeClass("empty");
		//_adjustContainerHeight();		

		_selectColumn(column3);
	}
	
	function _selectColumn(column)
	{
		column1.find("h2").removeClass("selected");
		column2.find("h2").removeClass("selected");
		column3.find("h2").removeClass("selected");
		
		column.find("h2").addClass("selected");
	}
	
	// Get a dom element for the menu item and bind an onlick event to it 
	function _getMenuItem(menuItem, eventHandler)
	{		
		var a 		= document.createElement("a");
		var idName = menuItem.name.replace(/\s/g,"_");
		idName = idName.replace("&","and");
		
		a.id 		= idName;
		a.data 		= menuItem;
		
		if (eventHandler)	
			jQuery(a).bind("click", eventHandler);
		
		var li = document.createElement("li");	
		li.appendChild(a);
		
		if (menuItem.collapsedMenus)
		{	
			a.expandImg = document.createElement("img");
			a.expandImg.src = "images/expand_menu.gif";
			a.appendChild(a.expandImg);
			
			a.collapsedMenus = _getCollapsedMenu(menuItem.collapsedMenus);
			li.appendChild(a.collapsedMenus);
		}
		
		
		// create a download image instead of download text link
		if (a.id != 'Download' && a.id != 'Add_to_page') {
			a.appendChild(document.createTextNode(menuItem.name));
		} 
		if (a.id == 'Download') {
			column3.find("#linkslist").addClass("downloadbutton");

			var downloadImage = document.createElement("img");
			downloadImage.src = "images/download_button.png";
			downloadImage.id = "download_button";
			
			jQuery(a).append(downloadImage);	
			
		}
		
		if (a.id == 'Add_to_page') {
			column3.find("#linkslist").addClass("addtopage_button");

			var addImage = document.createElement("img");
			addImage.src = "images/addtopage_button.png";
			addImage.id = "addtopage_button";
			
			jQuery(a).append(addImage);
		}
		
		// if it's a final download link, link it to its location
		if (menuItem.href) {
			jQuery(a).click( function() { window.location = menuItem.href; });	
		}
		
		// open popup window
		if (menuItem.hrefexternal) {
			jQuery(a).click(function() { window.open(menuItem.hrefexternal,'popup','menubar=1,resizable=1,width=750,height=700'); });	
		}
		
		return li;
	}
	
	// Get the dom element for a collapsed menu in column 1
	function _getCollapsedMenu(menus)
	{
		var ul = document.createElement("ul");
		for(var i = 0; i < menus.length; i++)
			ul.appendChild(_getMenuItem(menus[i], _column1Click));
		
		return ul;
	}
	
	// Adjusts the height of the container so that it will fit all of the values in
	// every column
	function _adjustContainerHeight()
	{		
		var heights = [column1.find("ul").height(), column2.find("ul").height(), column3.find(".centered").height()].
					  sort(function(x,y){ return x - y; });
		
		container.height(heights[2] + 200);
	}
	
	// add section-specific content
	function _addSectionContent(section) 
	{
		if (section == "Desktop_Backgrounds")
		{
			jQuery(instructions_headline).append("<p>Select your screen resolution</p>");
			jQuery(instructions_detail).append("<p>Download the zip archive, uncompress, and apply as a desktop background</p>");
			column3.find("#linkslist").addClass("stackedlinkslist");
		}  
		
		if (section == "Buddy_Icons") {
			
			jQuery(instructions_detail).append("<p>Download the zip archive and apply to your favorite chat program.</p>");

		}
		
		if (section == "People" || section == "Obama" || section == "O_Logomark" || section == "States" || section == "Site_Badges" || section == "Support_Tools" || section == "Blueprint" || section == "Taglines" || section == "Posters" || section == "Signs") {
			
			jQuery(instructions_detail).append("<p>Download the zip archive and uncompress.</p>");

		}
		
		if (section == "Site_Widgets_Google") {
			jQuery(instructions_detail).append("<p>The above button will open a popup. Press the \"+\"button in the lower left corner of the new window. Please enable popups.</p>");
		}
		if (section == "Site_Widgets") {
			jQuery(instructions_detail).append("<p>This widget can be used with a variety of sites. Press the above button and then press the \"Get Widget\" button in the lower left corner of the new window. Please enable popups.</p>");
		}
		if (section == "Flyer_Templates") {
			jQuery(instructions_detail).append("<p>Download this template and use to customize your own flyers.</p>");
		}
		if (section == "Issue_Flyers") {
			jQuery(instructions_detail).append("<p>Flyers are a great way to share information about Barack Obama. You can pass them out in public spaces, share them with people who might not have Internet access, or leave them in key places for people to peruse when they have a spare moment.</p><p>To avoid having to register with the FEC, you should limit your printed flyers for any event to 500 or fewer.</p>");
		}
	}
}

/* Menu data */
var submenus = 
[
	{ name: "JPEG", href: "" },
	{ name: "EPS", href: "" },
	{ name: "PSD Adobe Photoshop", href: "" },
    { name: "AI (Adobe Illustrator)", href: "" }
]

var DOWNLOAD_URL = 'http://www.barackobama.com/static/';

var menuItems = 
[
 
	{
		name: "Logos & Taglines",
		collapsedMenus: 
		[
			
			
			{
				name: "People",
				submenus:
				[
				 	{
						name: "Asian American & Pacific Islanders",
						image: "images/Logos_Taglines/obama_aapi.jpg",
						section: "People",
						submenus:
						[
							{ name: "Download",		href: (DOWNLOAD_URL + "Logos_Taglines/Groups/obama_aapi.pdf.zip") }
						]
					},
					{					
						name: "Americans Abroad",
						image: "images/Logos_Taglines/obama_abroad.jpg",
						section: "People",
						submenus:
						[
							{ name: "Download",		href: (DOWNLOAD_URL + "Logos_Taglines/Groups/obama_abroad.pdf.zip") }
						]
					},
					{
						name: "Environmentalists",
						image: "images/Logos_Taglines/obama_enviros.jpg",
						section: "People",
						submenus:
						[
							{ name: "Download",		href: (DOWNLOAD_URL + "Logos_Taglines/Groups/obama_enviros.pdf.zip") }
						]
					},
					{
						name: "First Americans",
						image: "images/Logos_Taglines/obama_firstam.jpg",
						section: "People",
						submenus:
						[
							{ name: "Download",		href: (DOWNLOAD_URL + "Logos_Taglines/Groups/obama_firstam.pdf.zip") }
						]
					},
					{
						name: "Independents",
						image: "images/Logos_Taglines/obama_indys.jpg",
						section: "People",
						submenus:
						[
							{ name: "Download",		href: (DOWNLOAD_URL + "Logos_Taglines/Groups/obama_indys.pdf.zip") }
						]
					},
					{
						name: "Latinos",
						image: "images/Logos_Taglines/obama_latinos.jpg",
						section: "People",
						submenus:
						[
							{ name: "Download",		href: (DOWNLOAD_URL + "Logos_Taglines/Groups/obama_latinos.pdf.zip") }
						]
					},		
					{
						name: "National Delegates",
						image: "images/Logos_Taglines/obama_delegates.jpg",
						section: "People",
						submenus:
						[
							{ name: "Download",		href: (DOWNLOAD_URL + "Logos_Taglines/Groups/obama_delegates.pdf.zip") }
						]
					},		
					{
						name: "People of Faith",
						image: "images/Logos_Taglines/obama_faith.jpg",
						section: "People",
						submenus:
						[
							{ name: "Download",		href: (DOWNLOAD_URL + "Logos_Taglines/Groups/obama_faith.pdf.zip") }
						]
					},
					{
						name: "Pride",
						image: "images/Logos_Taglines/obama_pride.jpg",
						section: "People",
						submenus:
						[
							{ name: "Download",		href: (DOWNLOAD_URL + "Logos_Taglines/Groups/obama_pride.pdf.zip") }
						]
					},
					{
						name: "Republicans",
						image: "images/Logos_Taglines/obama_repubs.jpg",
						section: "People",
						submenus:
						[
							{ name: "Download",		href: (DOWNLOAD_URL + "Logos_Taglines/Groups/obama_repubs.pdf.zip") }
						]
					},
					{
						name: "Sportsmen",
						image: "images/Logos_Taglines/obama_sportsmen.jpg",
						section: "People",
						submenus:
						[
							{ name: "Download",		href: (DOWNLOAD_URL + "Logos_Taglines/Groups/obama_sportsmen.pdf.zip") }
						]
					},
					{
						name: "Students",
						image: "images/Logos_Taglines/obama_students.jpg",
						section: "People",
						submenus:
						[
							{ name: "Download",		href: (DOWNLOAD_URL + "Logos_Taglines/Groups/obama_students.pdf.zip") }
						]
					},
					{
						name: "Veterans",
						image: "images/Logos_Taglines/obama_veterans.jpg",
						section: "People",
						submenus:
						[
							{ name: "Download",		href: (DOWNLOAD_URL + "Logos_Taglines/Groups/obama_veterans.pdf.zip") }
						]
					},
					{
						name: "Women",
						image: "images/Logos_Taglines/obama_women.jpg",
						section: "People",
						submenus:
						[
							{ name: "Download",		href: (DOWNLOAD_URL + "Logos_Taglines/Groups/obama_women.pdf.zip") }
						]
					},

				]
			
			},
			
			
			{
				name: "Obama Logo Suite",
				submenus:
				[
				 	{
						name: "Download a zip file of all 4-, 2-, and 1-Color wordmarks, logos, and logomarks in .eps format",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/4color/obama_4color.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Logo_Suite/obama_logo_suite.zip") } 
						]
					}
				]
			},
			
			{
				name: "Obama",
				submenus: 
				[
					{ 
						name: "4-Color",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/4color/obama_4color.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/4color/obama_4color.jpg.zip") } 
						]
					},
					{ 
						name: "4-Color Reversed",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/4color/obama_reversed.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/4color/obama_reversed.jpg.zip") } 
						]
					},
					{ 
						name: "4-Color Wordmark",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/4color/obama_4color_wordmark.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/4color/obama_4color_wordmark.jpg.zip") } 
						]
					},
					{ 
						name: "4-Color Wordmark Reversed",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/4color/obama_4color_wordmark_reversed.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/4color/obama_4color_wordmark_reversed.jpg.zip") } 
						]
					},
					{ 
						name: "4-Color Horizontal",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/4color/obama_4color_horizontal.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/4color/obama_4color_horizontal.jpg.zip") } 
						]
					},
					{ 
						name: "4-Color Horizontal Reversed",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/4color/obama_4color_horizontal_reversed.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/4color/obama_4color_horizontal_reversed.jpg.zip") } 
						]
					},
					
					
					
					
					{ 
						name: "2-Color",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/2color/obama_2color.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/2color/obama_2color.jpg.zip") } 
						]
					},
					{ 
						name: "2-Color Reversed",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/2color/obama_2color_reversed.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/2color/obama_2color_reversed.jpg.zip") } 
						]
					},
					{ 
						name: "2-Color Wordmark",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/2color/obama_2color_wordmark.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/2color/obama_2color_wordmark.jpg.zip") } 
						]
					},
					{ 
						name: "2-Color Wordmark Reversed",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/2color/obama_2color_wordmark_reversed.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/2color/obama_2color_wordmark_reversed.jpg.zip") } 
						]
					},
					{ 
						name: "2-Color Horizontal",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/2color/obama_2color_horizontal.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/2color/obama_2color_horizontal.jpg.zip") } 
						]
					},
					{ 
						name: "2-Color Horizontal Reversed",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/2color/obama_2color_horizontal_reversed.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/2color/obama_2color_horizontal_reversed.jpg.zip") } 
						]
					},
					
					
					
					{ 
						name: "1-Color",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/1color/obama_1color.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/1color/obama_1color.jpg.zip") } 
						]
					},
					{ 
						name: "1-Color Reversed",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/1color/obama_whitereversed.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/1color/obama_whitereversed.jpg.zip") } 
						]
					},
					{ 
						name: "1-Color Wordmark",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/1color/obama_wordmark.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/1color/obama_wordmark.jpg.zip") } 
						]
					},
					{ 
						name: "1-Color Wordmark Reversed",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/1color/obama_wordmark_reversed.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/1color/obama_wordmark_reversed.jpg.zip") } 
						]
					},
					{ 
						name: "1-Color Horizontal",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/1color/obama_1color_horizontal.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/1color/obama_1color_horizontal.jpg.zip") } 
						]
					},
					{ 
						name: "1-Color Horizontal Reversed",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/1color/obama_1color_horizontal_reversed.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/1color/obama_1color_horizontal_reversed.jpg.zip") } 
						]
					},
					
					{ 
						name: "3D",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama/3D/obama_3DLogo.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama/3D/obama_3DLogo.jpg.zip") } 
						]
					}
					
				] 
			},
			
			{
				name: "Obama-Biden",
				submenus:
				[
				 	{
						name: "Obama-Biden Logo",
						image: (DOWNLOAD_URL + "Logos_Taglines/Obama-Biden/ObamaBiden_Logo_1_small.jpg"),
						section: "Obama",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/Obama-Biden/ObamaBiden_Logo_1.zip") } 
						]
					}
				]
			},
			{
				name: '"O" Logomark',
				submenus: 
				[
					{ 
						name: "4-Color",
						image: (DOWNLOAD_URL + "Logos_Taglines/O_Logomark/4color/obama_4color_omark.jpg"),
						section: "O_Logomark",
						submenus: 
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/O_Logomark/4color/obama_4color_omark.jpg.zip") } 
						]
					},
					{ 
						name: "4-Color Reversed",
						image: (DOWNLOAD_URL + "Logos_Taglines/O_Logomark/4color/obama_4color_omark_reversed.jpg"),
						section: "O_Logomark",
						submenus:
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/O_Logomark/4color/obama_4color_omark_reversed.jpg.zip") } 
						]
					},
					{ 
						name: "2-Color",
						image: (DOWNLOAD_URL + "Logos_Taglines/O_Logomark/2color/obama_2color_omark.jpg"),
						section: "O_Logomark",
						submenus:
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/O_Logomark/2color/obama_2color_omark.jpg.zip") } 
						]
					},
					{ 
						name: "2-Color Reversed",
						image: (DOWNLOAD_URL + "Logos_Taglines/O_Logomark/2color/obama_2color_omark_reversed.jpg"),
						section: "O_Logomark",
						submenus:
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/O_Logomark/2color/obama_2color_omark_reversed.jpg.zip") } 
						]
					},
					{ 
						name: "1-Color",
						image: (DOWNLOAD_URL + "Logos_Taglines/O_Logomark/1color/obama_1color_omark.jpg"),
						section: "O_Logomark",
						submenus:
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/O_Logomark/1color/obama_1color_omark.jpg.zip") } 
						]
					},
					{ 
						name: "1-Color Reversed",
						image: (DOWNLOAD_URL + "Logos_Taglines/O_Logomark/1color/obama_1color_omark_reversed.jpg"),
						section: "O_Logomark",
						submenus:
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/O_Logomark/1color/obama_1color_omark_reversed.jpg.zip") } 
						]
					},
					
					{
						name: "3D",
						image: (DOWNLOAD_URL + "Logos_Taglines/O_Logomark/3D/3DLogo.jpg"),
						section: "O_Logomark",
						submenus:
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/O_Logomark/3D/3DLogo.jpg.zip") } 
						]
					},
					{
						name: "Vote For Change",
						image: "/images/downloads/icons/VFC_LOGO.jpg",
						section: "O_Logomark",
						submenus:
						[
							{ name: "Download", href: (DOWNLOAD_URL + "Logos_Taglines/O_Logomark/VFC_LOGO.pdf.zip") }
						]
					}
				]
			},
			{
				name: 'States',
				submenus: 
				[
					{  
						name: 'Alabama', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Alabama.jpg") , 
						section: "States",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Alabama.jpg.zip") }
						]
					},
					{
						name: 'Alaska', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Alaska.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Alaska.jpg.zip") }
						]	
					},
					{  
						name: 'Arizona', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Arizona.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Arizona.jpg.zip") }
						]	
					},
					{  
						name: 'Arkansas', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Arkansas.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Arkansas.jpg.zip") }
						]	
					},
					{  
						name: 'California', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/California.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/California.jpg.zip") }
						]	
					},
					{  
						name: 'Colorado', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Colorado.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Colorado.jpg.zip") }
						]	
					},
					{  
						name: 'Connecticut', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Connecticut.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Connecticut.jpg.zip") }
						]	 
					},
					{  
						name: 'Delaware', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Delaware.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Delaware.jpg.zip") }
						]	 
					},
					{  
						name: 'Florida', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Florida.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Florida.jpg.zip") }
						]	 
					},
					{  
						name: 'Georgia', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Georgia.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Georgia.jpg.zip") }
						]	 
					},
					{  
						name: 'Hawaii', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Hawaii.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Hawaii.jpg.zip") }
						]	 
					},
					{  
						name: 'Idaho', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Idaho.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Idaho.jpg.zip") }
						]	 
					},
					{  
						name: 'Illinois', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Illinois.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Illinois.jpg.zip") }
						]	 
					},
					{  
						name: 'Indiana', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Indiana.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Indiana.jpg.zip") }
						]	 
					},
					{  
						name: 'Iowa', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Iowa.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Iowa.jpg.zip") }
						]	 
					},
					{  
						name: 'Kansas', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Kansas.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Kansas.jpg.zip") }
						]	 
					},
					{  
						name: 'Kentucky', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Kentucky.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Kentucky.jpg.zip") }
						]	 
					},
					{  
						name: 'Louisiana', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Louisiana.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Louisiana.jpg.zip") }
						]	 
					},
					{  
						name: 'Maine', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Maine.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Maine.jpg.zip") }
						]	 
					},
					{  
						name: 'Maryland', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Maryland.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Maryland.jpg.zip") }
						]	 
					},
					{  
						name: 'Massachusetts', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Massachusetts.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Massachusetts.jpg.zip") }
						]	 
					},
					{  
						name: 'Michigan', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Michigan.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Michigan.jpg.zip") }
						]	 
					},
					{  
						name: 'Minnesota', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Minnesota.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Minnesota.jpg.zip") }
						]	 
					},
					{  
						name: 'Mississippi', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Mississippi.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Mississippi.jpg.zip") }
						]	 
					},
					{  
						name: 'Missouri', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Missouri.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Missouri.jpg.zip") }
						]	 
					},
					{  
						name: 'Montana', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Montana.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Montana.jpg.zip") }
						]	 
					},
					{  
						name: 'Nebraska', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Nebraska.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Nebraska.jpg.zip") }
						]	 
					},
					{  
						name: 'Nevada', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Nevada.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Nevada.jpg.zip") }
						]	 
					},
					{  
						name: 'New Hampshire', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/New_Hampshire.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/New_Hampshire.jpg.zip") }
						]	 
					},
					{  
						name: 'New Jersey', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/New_Jersey.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/New_Jersey.jpg.zip") }
						]	 
					},
					{  
						name: 'New Mexico', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/New_Mexico.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/New_Mexico.jpg.zip") }
						]	 
					},
					{  
						name: 'New York', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/New_York.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/New_York.jpg.zip") }
						]	 
					},
					{  
						name: 'North Carolina', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/North_Carolina.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/North_Carolina.jpg.zip") }
						]	 
					},
					{  
						name: 'North Dakota', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/North_Dakota.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/North_Dakota.jpg.zip") }
						]	 
					},
					{  
						name: 'Ohio', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Ohio.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Ohio.jpg.zip") }
						]	 
					},
					{  
						name: 'Oklahoma', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Oklahoma.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Oklahoma.jpg.zip") }
						]	 
					},
					{  
						name: 'Oregon', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Oregon.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Oregon.jpg.zip") }
						]	 
					},
					{  
						name: 'Pennsylvania', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Pennsylvania.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Pennsylvania.jpg.zip") }
						]	 
					},
					{  
						name: 'Rhode Island', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Rhode_Island.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Rhode_Island.jpg.zip") }
						]	 
					},
					{  
						name: 'South Carolina', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/South_Carolina.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/South_Carolina.jpg.zip") }
						]	 
					},
					{  
						name: 'South Dakota', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/South_Dakota.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/South_Dakota.jpg.zip") }
						]	 
					},
					{  
						name: 'Tennessee', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Tennessee.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Tennessee.jpg.zip") }
						]	 
					},
					{  
						name: 'Texas', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Texas.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Texas.jpg.zip") }
						]	 
					},
					{  
						name: 'Utah', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Utah.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Utah.jpg.zip") }
						]	 
					},
					{  
						name: 'Vermont', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Vermont.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Vermont.jpg.zip") }
						]	 
					},
					{  
						name: 'Virginia', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Virginia.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Virginia.jpg.zip") }
						]	 
					},
					{  
						name: 'Washington', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Washington.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Washington.jpg.zip") }
						]	 
					},
					{  
						name: 'West Virginia', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/West_Virginia.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/West_Virginia.jpg.zip") }
						]	 
					},
					{  
						name: 'Wisconsin', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Wisconsin.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Wisconsin.jpg.zip") }
						]	 
					},
					{  
						name: 'Wyoming', 
						image: (DOWNLOAD_URL + "Logos_Taglines/States/Wyoming.jpg") , 
						section: "States",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/States/Wyoming.jpg.zip") }
						]	 
					}
				] 
			},
			
			
			{
				name: 'Tagline Lockups',
				submenus: 
				[
					{ 
						name: "Change We Can Believe In",
						image:(DOWNLOAD_URL + "Logos_Taglines/Taglines/changewecanbelievein.jpg"),
						section: "Taglines",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/Taglines/changewecanbelievein.pdf.zip") }
						]						
					},
					
					{
						name: "Yes We Can",
						image: (DOWNLOAD_URL + "Logos_Taglines/Taglines/yeswecan.jpg"),
						section: "Taglines",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/Taglines/yeswecan.pdf.zip") }
						]	
					},
					
					{
						name: "Yes We Can Reversed",
						image: (DOWNLOAD_URL + "Logos_Taglines/Taglines/yeswecan_reversed.jpg"),
						section: "Taglines",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/Taglines/yeswecan_reversed.pdf.zip") }
						]	
					},
					
					{
						name: "Stand For Change",
						image: (DOWNLOAD_URL + "Logos_Taglines/Taglines/standforchange.jpg"),
						section: "Taglines",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Logos_Taglines/Taglines/standforchange.pdf.zip") }
						]	
					}
				] 
			}	
		]
	},
	
	{
		name: "Website & Chat",
		collapsedMenus: 
		[
			{
				name: "Buddy Icons",
				submenus: 
				[
						   
					{ name: "Environmentalists",
						image: "images/Website_Chat/enviroiconthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamaenviroicon.jpg.zip") }
						]
					},
					{ name: "People of Faith",
						image: "images/Website_Chat/faithiconthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamafaithicon.jpg.zip") }
						]
					},
					{ name: "First Americans",
						image: "images/Website_Chat/firstamiconthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamafirstamicon.jpg.zip") }
						]
					},
					{ name: "Generation Obama",
						image: "images/Website_Chat/genoiconthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamagenoicon.jpg.zip") }
						]
					},
					{ name: "Hope",
						image: "images/Website_Chat/hopeiconthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamahopeicon.jpg.zip") }
						]
					},
					{ name: "Kids",
						image: "images/Website_Chat/kidsiconthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamakidsicon.jpg.zip") }
						]
					},
					{ name: "LGBT",
						image: "images/Website_Chat/glbticonthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamaglbticon.jpg.zip") }
						]
					},
					{ name: "Latinos",
						image: "images/Website_Chat/latinoiconthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamalatinoicon.jpg.zip") }
						]
					},
					{ name: "Obama Logo on Blue",
						image: "images/Website_Chat/logoonbluethumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamalogoonblue.jpg.zip") }
						]
					},
					{ name: "Obama Logo on White",
						image: "images/Website_Chat/logoonwhiteiconthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamalogoonwhiteicon.jpg.zip") }
						]
					},
					/*{ name: "Obama Circle Icon",
						image: "images/Website_Chat/obamacircleiconthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamacircleicon.jpg.zip") }
						]
					},*/
					{ name: "Obama Face",
						image: "images/Website_Chat/obamafaceiconthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamafaceicon.jpg.zip") }
						]
					},
					{ name: "Obama with Flag Background",
						image: "images/Website_Chat/obamaflagiconthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamaflagicon.jpg.zip") }
						]
					},
					{ name: "People",
						image: "images/Website_Chat/peopleiconthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamapeopleicon.jpg.zip") }
						]
					},
					{ name: "Standard Icon",
						image: "images/Website_Chat/standardiconthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamastandardicon.jpg.zip") }
						]
					},
					{ name: "Students",
						image: "images/Website_Chat/studenticonthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamastudenticon.jpg.zip") }
						]
					},
					{ name: "Text Icon",
						image: "images/Website_Chat/texticonthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamatexticon.jpg.zip") }
						]
					},
					{ name: "Veterans",
						image: "images/Website_Chat/veteraniconthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamaveteranicon.jpg.zip") }
						]
					},
					{ name: "Women",
						image: "images/Website_Chat/womeniconthumb.jpg",
						section: "Buddy_Icons",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Buddy_Icons/obamawomenicon.jpg.zip") }
						]
					}
				
				] 
			},
			
			{
				name: "Site Badges",
				submenus: 
				[
					{ name: "Blue on White",
						image: (DOWNLOAD_URL + "Website_Chat/Site_Badges/normalblueonwhite.jpg"),
						section: "Site_Badges",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Site_Badges/normalblueonwhite.jpg.zip") }
						]
					}, 
					{ name: "I'm Caucusing for Barack Obama",
						image: (DOWNLOAD_URL + "Website_Chat/Site_Badges/normalcaucus.jpg"),
						section: "Site_Badges",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Site_Badges/normalcaucus.jpg.zip") }
						]
					},
					{ name: "Logo Badge",
						image: (DOWNLOAD_URL + "Website_Chat/Site_Badges/normalcolor.jpg"),
						section: "Site_Badges",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Site_Badges/normalcolor.jpg.zip") }
						]
					},
					{ name: "Logo Badge on Blue",
						image: (DOWNLOAD_URL + "Website_Chat/Site_Badges/normalcoloronblue.jpg"),
						section: "Site_Badges",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Site_Badges/normalcoloronblue.jpg.zip") }
						]
					},
					{ name: "I Support Barack Obama",
						image: (DOWNLOAD_URL + "Website_Chat/Site_Badges/normalsupport.jpg"),
						section: "Site_Badges",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Site_Badges/normalsupport.jpg.zip") }
						]
					},
					{ name: "I'm Voting for Barack Obama",
						image: (DOWNLOAD_URL + "Website_Chat/Site_Badges/normalvoting.jpg"),
						section: "Site_Badges",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Site_Badges/normalvoting.jpg.zip") }
						]
					},
					{ name: "Logo White on Blue",
						image: (DOWNLOAD_URL + "Website_Chat/Site_Badges/normalwhiteonblue.jpg"),
						section: "Site_Badges",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Site_Badges/normalwhiteonblue.jpg.zip") }
						]
					},
					{ name: "Change We Can Believe In",
						image: (DOWNLOAD_URL + "Website_Chat/Site_Badges/vertchange.jpg"),
						section: "Site_Badges",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Site_Badges/vertchange.jpg.zip") }
						]
					},
					{ name: "Obama '08 Red and Blue",
						image: (DOWNLOAD_URL + "Website_Chat/Site_Badges/vertjfk.jpg"),
						section: "Site_Badges",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Site_Badges/vertjfk.jpg.zip") }
						]
					},
					{ name: "Obama '08 Blue",
						image: (DOWNLOAD_URL + "Website_Chat/Site_Badges/vertobama.jpg"),
						section: "Site_Badges",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Site_Badges/vertobama.jpg.zip") }
						]
					},
					{ name: "White Logo with URL on Blue",
						image: (DOWNLOAD_URL + "Website_Chat/Site_Badges/widebluelogo.jpg"),
						section: "Site_Badges",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Site_Badges/widebluelogo.jpg.zip") }
						]
					},
					{ name: "Color Logo with URL on Blue",
						image: (DOWNLOAD_URL + "Website_Chat/Site_Badges/widecolorlogo.jpg"),
						section: "Site_Badges",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Site_Badges/widecolorlogo.jpg.zip") }
						]
					},
					{ name: "Red and Blue with URL",
						image: (DOWNLOAD_URL + "Website_Chat/Site_Badges/widejfk.jpg"),
						section: "Site_Badges",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Site_Badges/widejfk.jpg.zip") }
						]
					},
					
					{ name: "Blue with URL",
						image: (DOWNLOAD_URL + "Website_Chat/Site_Badges/wideobama.jpg"),
						section: "Site_Badges",
submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Website_Chat/Site_Badges/wideobama.jpg.zip") }
						]
					}
				] 
			},
			
			{
				name: "Site Widgets",
				submenus: 
				[
					
					
					{
						name: "News Widget",
						image: "images/Website_Chat/widget_news_article.jpg",
						section: "Site_Widgets",
						submenus: 
						[
						 	{ name: "Add to page",		hrefexternal:(DOWNLOAD_URL + 'news_widget.html') }
						]
					},
					{ 
						name: "Video Widget",
						image: "images/Website_Chat/widget_latestvideo.jpg ",
						section: "Site_Widgets",
						submenus: 
						[
						 	{ name: "Add to page",		hrefexternal:(DOWNLOAD_URL + 'video_widget.html') }
						]
					},
					{
						name: "Google Latest Videos",
						image: "images/Website_Chat/google_video.jpg",
						section: "Site_Widgets_Google",
						submenus: 
						[
						 	{ name: "Add to page",		hrefexternal:(DOWNLOAD_URL + 'google_video_widget.html') }
						]
					},
					
					{
						name: 'Google Latest News and Videos',
						image: "images/Website_Chat/google_latest_news.jpg",
						section: "Site_Widgets_Google",
						submenus: 
						[
						 	{ name: "Add to page",		hrefexternal:(DOWNLOAD_URL + 'google_news_video_widget.html') }
						]
					},
					{
						name: 'Google Latest News Articles',
						image: "images/Website_Chat/google_latestarticles.jpg",
						section: "Site_Widgets_Google",
						submenus: 
						[
						 	{ name: "Add to page",		hrefexternal:(DOWNLOAD_URL + 'google_news_widget.html') }
						]
					}
				] 
			}
		]
	},
	
	{
		name: "For Your Computer",
		collapsedMenus: 
		[
			{
				name: "Desktop Backgrounds",
				submenus: 
				[
					{ 
						name: "Change We Can Believe In (Blue)",
						image: "images/computer/Desktop_Background/believe_preview.jpg",
						section: "Desktop_Backgrounds",
						submenus: 
						[
							{ name: "400x600 JPG", 		href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/believe/obama_believe_400.jpg.zip") },
							{ name: "800x600 JPG", 		href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/believe/obama_believe_800.jpg.zip") },
							{ name: "1024x768 JPG", 	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/believe/obama_believe_1024.jpg.zip") }, 
							{ name: "1280x1024 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/believe/obama_believe_1280.jpg.zip") }, 
							{ name: "1600x1200 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/believe/obama_believe_1600.jpg.zip") },  
							{ name: "1680x1050 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/believe/obama_believe_1680.jpg.zip") }, 
							{ name: "1920x1200 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/believe/obama_believe_1920.jpg.zip") }
						]
					},
					
					{
						name: "Change We Can Believe In (Blue and Red)",
						image: "images/computer/Desktop_Background/change_preview.jpg",
												section: "Desktop_Backgrounds",
submenus: 
						[
							{ name: "400x600 JPG", 		href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/change/obama_change_400.jpg.zip") },
							{ name: "800x600 JPG", 		href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/change/obama_change_800.jpg.zip") },
							{ name: "1024x768 JPG", 	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/change/obama_change_1024.jpg.zip") }, 
							{ name: "1280x1024 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/change/obama_change_1280.jpg.zip") }, 
							{ name: "1600x1200 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/change/obama_change_1600.jpg.zip") },  
							{ name: "1680x1050 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/change/obama_change_1680.jpg.zip") }, 
							{ name: "1920x1200 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/change/obama_change_1920.jpg.zip") }
						]				
					},
					
					{
						name: "Icontage",
						image: "images/computer/Desktop_Background/icontage_preview.jpg",
												section: "Desktop_Backgrounds",
submenus: 
						[
							{ name: "400x600 JPG", 		href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/icontage/obama_icontage_400.jpg.zip") },
							{ name: "800x600 JPG", 		href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/icontage/obama_icontage_800.jpg.zip") },
							{ name: "1024x768 JPG", 	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/icontage/obama_icontage_1024.jpg.zip") }, 
							{ name: "1280x1024 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/icontage/obama_icontage_1280.jpg.zip") }, 
							{ name: "1600x1200 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/icontage/obama_icontage_1600.jpg.zip") },  
							{ name: "1680x1050 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/icontage/obama_icontage_1680.jpg.zip") }, 
							{ name: "1920x1200 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/icontage/obama_icontage_1920.jpg.zip") }
						]
					},
					
					{
						name: 'Night',
						image: "images/computer/Desktop_Background/night_preview.jpg",
												section: "Desktop_Backgrounds",
submenus: 
						[
							{ name: "400x600 JPG", 		href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/night/obama_night_400.jpg.zip") },
							{ name: "800x600 JPG", 		href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/night/obama_night_800.jpg.zip") },
							{ name: "1024x768 JPG", 	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/night/obama_night_1024.jpg.zip") }, 
							{ name: "1280x1024 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/night/obama_night_1280.jpg.zip") }, 
							{ name: "1600x1200 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/night/obama_night_1600.jpg.zip") },  
							{ name: "1680x1050 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/night/obama_night_1680.jpg.zip") }, 
							{ name: "1920x1200 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/night/obama_night_1920.jpg.zip") }
						]				
					},
					
					{
						name: 'Yes We Can',
						image: "images/computer/Desktop_Background/yeswecan_preview.jpg",
												section: "Desktop_Backgrounds",
submenus: 
						[
							{ name: "400x600 JPG", 		href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/yeswecan/obama_yeswecan_400.jpg.zip") },						 
							{ name: "800x600 JPG", 		href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/yeswecan/obama_yeswecan_800.jpg.zip") },
							{ name: "1024x768 JPG", 	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/yeswecan/obama_yeswecan_1024.jpg.zip") }, 
							{ name: "1280x1024 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/yeswecan/obama_yeswecan_1280.jpg.zip") }, 
							{ name: "1600x1200 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/yeswecan/obama_yeswecan_1600.jpg.zip") },  
							{ name: "1680x1050 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/yeswecan/obama_yeswecan_1680.jpg.zip") }, 
							{ name: "1920x1200 JPG",	href: (DOWNLOAD_URL + "Computer/Desktop_Backgrounds/yeswecan/obama_yeswecan_1920.jpg.zip") }
						]							
					}
				]
			}
			/*
			{
				name: "Screen Savers",
				submenus: [] 
			}*/
		]
	},
	
	{
		name: "Posters & Signs",
		collapsedMenus: 
		[
			{
				name: "Posters",
				submenus: 
				[
					{ name: "Change We Can Believe In Blue",
						image:(DOWNLOAD_URL + "Posters_Signs/obama_change_01.jpg"),
						section: "Posters",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Posters_Signs/obama_change_01.pdf.zip") }
						]
					},
					{ name: "Change We Can Believe In Blue and Red",
						image: (DOWNLOAD_URL + "Posters_Signs/obama_change.jpg"),
						section: "Posters",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Posters_Signs/obama_change.pdf.zip") }
						]
					}
					
					
				]
			},
			
			{
				name: "Signs",
				submenus:
				[
					{ 
						name: "Obama '08",
						image: (DOWNLOAD_URL + "Posters_Signs/obama_placard_01-1.jpg"),
						section: "Signs",
						submenus: 
						[	{name: "Download",		href:(DOWNLOAD_URL + "Posters_Signs/obama_placard_01-1.pdf.zip") }
						]
					},
					
					{ 
						name: "Yes We Can",
						image: (DOWNLOAD_URL + "Posters_Signs/placard_yeswecan.jpg"),
						section: "Signs",
						submenus: 
						[	{name: "Download",		href:(DOWNLOAD_URL + "Posters_Signs/placard_yeswecan.pdf.zip") }
						]
					},
					
					{ 
						name: "Yes We Can Blue",
						image: (DOWNLOAD_URL + "Posters_Signs/placard_yeswecan_blue.jpg"),
						section: "Signs",
						submenus: 
						[	{name: "Download",		href:(DOWNLOAD_URL + "Posters_Signs/placard_yeswecan_blue.pdf.zip") }
						]
					}
					
					
				] 
			}
		]
	},
	
	{
		name: "Support Tools",
		collapsedMenus: 
		[
			/*{
				/*name: "Flyer Templates",
				submenus: 
				[
					{ 
						name: "Version #1",
						image: "images/preview.jpg ",
						submenus: submenus
					},
					
					{
						name: "Version #2",
						image: "images/preview.jpg ",
						submenus: submenus
					}
				]
			},*/
			{
				name: "Contribution Form",
				submenus: 
				
				[
					{
						name: "Campaign Contribution Form",
						image: "images/generic_pdf_icon.jpg",
						section: "Support_Tools",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Support_Tools/contribution_form.pdf.zip") }
						]
					}
				] 
			},
			
			{
				name: "Sign-in Sheets",
				submenus: 
				
				[
					{
						name: "Sign-in Sheet",
						image: "images/Support_Tools/ofasignin.jpg",
						section: "Support_Tools",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Support_Tools/SignIn_Sheets/ofasignin.pdf.zip") }
						]
					}
				] 
			},
			
			{
				name: "Supporter Cards",
				submenus: 
				
				[
				 	{
						name: "Supporter Cards",
						image: "images/Support_Tools/ofasupportercard.jpg",
						section: "Support_Tools",
						submenus: 
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Support_Tools/Supporter_Cards/ofasupportercard.pdf.zip") }
						]
					}
				 
				] 
			}
		]
	},
	
	{ 
		name: "Flyers and Documents",
		collapsedMenus: 
		[
		 
		 {
				name: "Blueprint for Change",
				submenus: 
				[
					{ 
						name: "Blueprint for Change : Barack Obama's Plan for America",
						image: "images/generic_pdf_icon.jpg",

						section: "Blueprint",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/ObamaBlueprintForChange.pdf.zip") }
						]			
					}
				]
		 },
		 
		 
			{
				name: "Flyer Templates",
				submenus: 
				[
					{ 
						name: "Event Flyer",
						image: "images/generic_doc_icon.jpg",						
						section: "Flyer_Templates",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Flyer_Templates/OFA_Event_Flyer.doc.zip") }
						]			
					},
					
					{
						name: "'Yes We Can' Event Flyer",
						image: "images/generic_doc_icon.jpg",
						section: "Flyer_Templates",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Flyer_Templates/yeswecan_flyer.doc.zip") }
						]
					},
					{
						name: "'Stand for Change' Event Flyer",
						image: "images/generic_doc_icon.jpg",
						section: "Flyer_Templates",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Flyer_Templates/standforchange_flyer.doc.zip") }
						]
					}
				]
			},
	
			{
				name: "Issue Flyers",
				submenus: 
				[
				
						{ 
						name: "America's Youth",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/americas_youth.pdf") }
						]			
					},
						{ 
						name: "Asia",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/asia.pdf") }
						]			
					},
						{ 
						name: "Disabilities",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/disabilities.pdf") }
						]			
					},
						{ 
						name: "Economy",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/economy.pdf") }
						]			
					},
						{ 
						name: "Education",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/education.pdf") }
						]			
					},
					{ 
						name: "Ethics",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/ethics.pdf") }
						]			
					},

						{ 
						name: "Foreign Policy",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/foreign_policy.pdf") }
						]			
					},

						{ 
						name: "Health Care",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/healthcare.pdf") }
						]			
					},
					
						{ 
						name: "Homeland Security",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/homelandsecurity.pdf") }
						]			
					},
						{ 
						name: "Israel",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/israel.pdf") }
						]			
					},
						{ 
						name: "The Issues",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/policy_issues.pdf") }
						]			
					},
						{ 
						name: "The War in Iraq",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/iraq.pdf") }
						]			
					},
					{ 
						name: "The Job Market",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/job_market.pdf") }
						]			
					},
					{ 
						name: "Middle Class Issues",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/middleclass.pdf") }
						]			
					},			
					{ 
						name: "Labor",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/labor.pdf") }
						]			
					},		
					{ 
						name: "Rural America",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/rural_america.pdf") }
						]			
					},
					{ 
						name: "Seniors",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/seniors.pdf") }
						]			
					},
					{ 
						name: "Sportsmen",
						image: "images/generic_pdf_icon.jpg",
						section: "Issue_Flyers",
						submenus:
						[
							{ name: "Download", 		href: (DOWNLOAD_URL + "Flyers/Issue_Flyers/sportsmen.pdf") }
						]			
					}
			
				]
			}		
		]
	},
	{
		name: "Videos",
		collapsedMenus: 
		[
			
			{
				name: "Speeches",
				submenus:
				[
					{
						name: "Biden VP announcement",
						image: "images/Videos/BidenVPAnnouncement.jpg",
						section: "Speeches",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20080823_SpringfieldIL_BidenVPAnnouncement_BS.mov") }
						]
					},
					{
						name: "Orlando, Fla VFW Address",
						image: "images/Videos/VFW.jpg",
						section: "Speeches",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20080819_VFW_Speech_Riser.mov") }
						]
					},
					{
						name: "Yes We Can,  Nashua NH",
						image: "images/Videos/NHYesWeCan.jpg",
						section: "Speeches",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/20080108_NHYESWeCanFinal_h264.mov") }
						]
					},
					{
						name: "Iowa's Jefferson-Jackson Dinner",
						image: "images/Videos/jj.jpg",
						section: "Speeches",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Podcasts%20%28Ashima%29/P20080215_JJDINNERFINAL-H.264%20for%20iPod%20Video%20320x240%20%28QVGA%29.m4v") }
						]
					},
					{
						name: "New Hampshire Primary Speech: Yes We Can",
						image: "images/Videos/newhampshire.jpg",
						section: "Speeches",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Podcasts%20%28Ashima%29/P20080108NHYESWECANCANFIX-H.264%20for%20iPod%20Video%20320x240%20%28QVGA%29.m4v") }
						]
					},
					{
						name: "South Carolina Victory Speech",
						image: "images/Videos/southcarolina.jpg",
						section: "Speeches",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Podcasts%20%28Ashima%29/P20080131_SCVICTORYFINAL-H.264%20for%20iPod%20Video%20320x240%20%28QVGA%29.m4v") }
						]
					},
					{
						name: "A More Perfect Union",
						image: "images/Videos/moreperfectunion.jpg",
						section: "Speeches",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Podcasts%20%28Ashima%29/20080318_more_perfect_union-H.264%20for%20iPod%20Video%20320x240%20%28QVGA%29.m4v") }
						]
					},
	
					{
						name: "Forging a New Future for America",
						image: "images/Videos/forgingnewfuture.jpg",
						section: "Speeches",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/podcasts/20080520_fullspeech_DesMoinesIA_podcast.m4v") }
						]
					},
					{
						name: "Democratic National Convention 2004 Keynote",
						image: "images/Videos/2004DNCSpeech.jpg",
						section: "Speeches",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20040727_dnctitleFINAL.mov") }
						]
					},		
					{
						name: "James Taylor",
						image: "images/Videos/JamesTaylor.jpg",
						section: "Speeches",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20081020_ChapelHillNC_JamesTaylorDTC_FINAL.mov") }
						]
					},


				]
			},
			{
				name: "Grassroots Organizing",
				submenus:
				[
				 	{
						name: "Guide To My.BarackObama.com",
						image: "images/downloads/videos/PiMyBO_2.jpg",
						section: "Grassroots Organizing",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20080902_MYBO_Tutorial-H.264%20800Kbps.mov") }
						]
					},
				 	{
						name: "Guide to 'Neighbor-To-Neighbor'",
						image: "images/downloads/videos/Phone.jpg",
						section: "Grassroots Organizing",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20080909_MyBO_PHONE_web.mov") }
						]
					},
					{
						name: "Canvass for Change",
						image: "images/downloads/videos/PiCanvass.jpg",
						section: "Grassroots Organizing",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20071029_Canvass%20for%20Change%20small.mov") }
						]
					},
					{
						name: "Signs of Hope and Change",
						image: "images/Videos/SignsOfHopeAndChange.jpg",
						section: "Grassroots Organizing",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20080918_SignsDV_NewBump.mov") }
						]
					},
					{
						name: "Boston Students",
						image: "images/Videos/BostonStudents.jpg",
						section: "Grassroots Organizing",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/20080107bostonstudents.mov") }
						]
					},
					{
						name: "A History of Voter Registration",
						image: "images/Videos/MississippiVoterRegHistory.jpg",
						section: "Grassroots Organizing",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20080808_VoterRegMississippi.mov") }
						]
					},
					{
						name: "Vets for Obama",
						image: "images/Videos/Vets_for_Obama.jpg",
						section: "Grassroots Organizing",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/20080731_Veterans_Final_SEM-H.264%20800Kbps.mov") }
						]
					},
					{
						name: "Bronx Students",
						image: "images/Videos/BronxStudents.jpg",
						section: "Grassroots Organizing",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20080327_bronx.mov") }
						]
					},
					{
						name: "Get Out The Vote Motion Graphic Loop",
						image: "images/Videos/GOTVLoop.jpg",
						section: "Grassroots Organizing",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/web-ads/20081024_geotruck_08_H264LAN.mov") }
						]
					},
					{
						name: "Take the Day Off",
						image: "images/Videos/TakeTheDayOff.jpg",
						section: "Grassroots Organizing",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20081031_TakeTheDay_Final2.mov") }
						]
					},	
					{
						name: "Bring a Friend to Vote",
						image: "images/Videos/BringAFriend.jpg",
						section: "Grassroots Organizing",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20081030_Bring_A_Friend_LAN_p.mov") }
						]
					},	
					{
						name: "Make History",
						image: "images/Videos/MakeHistory.jpg",
						section: "Grassroots Organizing",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/MakeHistory5.mov") }
						]
					},
					{
						name: "Come to Iowa to Volunteer",
						image: "images/Videos/ComeToIowa.jpg",
						section: "Grassroots Organizing",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20081028_Come_To_Iowa.mov") }
						]
					},
					{
						name: "Voter Protection PSA Ohio",
						image: "images/Videos/OhioVoterProtection.jpg",
						section: "Grassroots Organizing",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20080828_AmericanStories_AMRecut_h264.mov") }
						]
					},
					{
						name: "Don't Let Up (aka bike video)",
						image: "images/Videos/Don'tLetUp.jpg",
						section: "Grassroots Organizing",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/bike_v03_h264.mov") }
						]
					}					
					
				]
			},		
			{
				name: "The Campaign Trail",
				submenus:
				[
					{
						name: "Meet Michelle",
						image: "images/Videos/MeetMichelle.jpg",
						section: "The Campaign Trail",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20070208_Meet%20Michelle%20Obama.mov") }
						]
					},
					{
						name: "Signs of Hope & Change",
						image: "images/Videos/SignsOfHopeAndChange.jpg",
						section: "The Campaign Trail",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20080826_SignsOfHope_SD.mov") }
						]
					},
					{
						name: "Ebenezer Baptist Church",
						image: "images/Videos/EbenezerBaptistChurch.jpg",
						section: "The Campaign Trail",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20080201_ebenezercolor.mov") }
						]
					},
					{
						name: "New Orleans, We're All In This Together",
						image: "images/Videos/RebuildingNewOrleans.jpg",
						section: "The Campaign Trail",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20080606_RebuildingNewOrleans_REDUX_SEM.mov") }
						]
					},
					{
						name: "Rally Visuals",
						image: "images/Videos/RallyVideo.jpg",
						section: "The Campaign Trail",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/web-ads/20081015_rally_show_rev2-H.264%20LAN.mov") }
						]
					},
					{
						name: "In Puerto Rico",
						image: "",
						section: "The Campaign Trail",
						submenus:
						[
							{ name:"Download", 	href: ("http://my.barackobama.com/page/-/Barack%20Spanish%20Lines.mov") }
						]
					},
					{
						name: "Meet Barack",
						image: "images/Videos/AmericanStories.jpg",
						section: "The Campaign Trail",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20080828_BIO_lttrbx.mov") }
						]
					},
					{
						name: "American Stories",
						image: "images/Videos/BarackBio.jpg",
						section: "The Campaign Trail",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20080828_AmericanStories_AMRecut_h264.mov") }
						]
					},
					{
						name: "Joe Biden and the Violence Against Women Act",
						image: "images/Videos/ViolenceAgainstWomenAct.jpg",
						section: "The Campaign Trail",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20081021_VAWA_LAN.mov") }
						]
					},
					{
						name: "Women for Obama",
						image: "images/Videos/WomenForObama.jpg",
						section: "The Campaign Trail",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20082208_WFO_Convention_COLOR_JD_h264.mov") }
						]
					},
					{
						name: "Al the Shoesalesman Gets a Tax Cut",
						image: "images/Videos/AlBundy.jpg",
						section: "The Campaign Trail",
						submenus:
						[
							{ name: "Download",	href: ("http://my.barackobama.com/page/-/Video/20081020_bundy_fix.mov") }
						]
					},
					{
						name: "Robots",
						image: "images/Videos/Roborts.jpg",
						section: "The Campaign Trail",
						submenus:
						[
							{ name: "Download",	href: ("page/-/Video/20081031Robot_AvecText.mov") }
						]
					}
				]
			}
		]
	}
];
