$(document).ready(function(){
	
	madeInUsaContent = $('.madeinusa-content').html();
	innovationContent = $('.innovation-content').html();
	factoriesContent = $('.factories-content').html();
	tourAFactoryContent = $('.tourafactory-content').html();
	militaryContent = $('.military-content').html();
	usaNav();

});

function usaNav() {

	$.address.init(function(e) {

		$('.usa-nav a').click(function()
		{				
			$.address.value($(this).attr("href"));

			$(this).parent().find('a').each(function(e){
				$(this).removeClass('selected');
			});

			$(this).addClass("selected");

			if( $(this).attr('id') == 'madeinusa' )
			{
				$('.madeinusa-content').html(madeInUsaContent);

				$('.madeinusa-content').show();
				$('.innovation-content').hide();
				$('.factories-content').hide();
				$('.tourafactory-content').hide();
				$('.military-content').hide();
				
				$('.innovation-content').empty();
				$('.factories-content').empty();
				$('.tourafactory-content').empty();
				$('.military-content').empty();
			} 
			else if( $(this).attr('id') == 'innovation' )
			{

				$('.innovation-content').html(innovationContent);

				$('.madeinusa-content').hide();
				$('.innovation-content').show();
				
				$('.factories-content').hide();
				$('.tourafactory-content').hide();
				$('.military-content').hide();
				
				$('.madeinusa-content').empty();
				$('.factories-content').empty();
				$('.tourafactory-content').empty();
				$('.military-content').empty();
			}
			else if( $(this).attr('id') == 'factories' )
			{
				$('.factories-content').html(factoriesContent);

				$('.madeinusa-content').hide();
				$('.innovation-content').hide();
				$('.factories-content').show();
				$('.tourafactory-content').hide();
				$('.military-content').hide();

				$('.madeinusa-content').empty();
				$('.innovation-content').empty();
				$('.tourafactory-content').empty();
				$('.military-content').empty();
			}
			else if( $(this).attr('id') == 'tourafactory' )
			{
				$('.tourafactory-content').html(tourAFactoryContent);

				$('.madeinusa-content').hide();
				$('.innovation-content').hide();
				$('.factories-content').hide();
				$('.tourafactory-content').show();
				$('.military-content').hide();

				$('.madeinusa-content').empty();
				$('.innovation-content').empty();
				$('.factories-content').empty();
				$('.military-content').empty();
			}
			else if( $(this).attr('id') == 'military' )
			{
				$('.military-content').html(militaryContent);

				$('.madeinusa-content').hide();
				$('.innovation-content').hide();
				$('.factories-content').hide();
				$('.tourafactory-content').hide();
				$('.military-content').show();


				$('.madeinusa-content').empty();
				$('.innovation-content').empty();
				$('.factories-content').empty();
				$('.tourafactory-content').empty();
			}

			return false;
		});

	}).change(function(e) {

		var pathNames = $.address.pathNames();
		var navItem;

		// set the navigation element
		if (pathNames.length == 0) {
			navItem = $(".usa-nav a[rel=made-in-usa]");
		} else if (pathNames.length == 1) {
			navItem = $('.usa-nav a[rel=' + pathNames[0] + ']');
		}

		var title = navItem.text();

		// define scripts for each section
		var sectionScripts = {
			'made-in-usa': "",
			'innovation': "",
			'factories': "",
			'tour-a-factory': "",
			'military-partnership': ""
		};

		var scriptName = sectionScripts[navItem.attr("rel")];
		var contentId = "#content-" + navItem.attr("rel");

		// switch selected element
		navItem.siblings('.selected').removeClass('selected');
		navItem.addClass('selected');

		if( $(navItem).attr('id') == 'madeinusa' )
		{
			$('.madeinusa-content').show();
			$('.innovation-content').hide();
			$('.factories-content').hide();
			$('.tourafactory-content').hide();
			$('.military-content').hide();
		} 
		else if( $(navItem).attr('id') == 'innovation' )
		{
			$('.madeinusa-content').hide();
			$('.innovation-content').show();
			$('.factories-content').hide();
			$('.tourafactory-content').hide();
			$('.military-content').hide();
		}
		else if( $(navItem).attr('id') == 'factories' )
		{
			$('.madeinusa-content').hide();
			$('.innovation-content').hide();
			$('.factories-content').show();
			$('.tourafactory-content').hide();
			$('.military-content').hide();
		}
		else if( $(navItem).attr('id') == 'tourafactory' )
		{
			$('.madeinusa-content').hide();
			$('.innovation-content').hide();
			$('.factories-content').hide();
			$('.tourafactory-content').show();
			$('.military-content').hide();
		}
		else if( $(navItem).attr('id') == 'military' )
		{
			$('.madeinusa-content').hide();
			$('.innovation-content').hide();
			$('.factories-content').hide();
			$('.tourafactory-content').hide();
			$('.military-content').show();
		}
		
		return false;

	});
	$.address.history(false);
}