$(document).ready(
	function(){
		
		//If a third navigation menu is present, reposition it in the DOM
		//if( $('#secondaryNavigation ul li.current ul').size() > 0 ){
		//	
		//	//Get third menu
		//	var thirdMenu = $('#secondaryNavigation ul li.current ul').remove();
		//	
		//	//Append
		//	$('#secondaryNavigation').append(thirdMenu);
		//	$('#secondaryNavigation ul:last').attr('id','tertiary');
		//
		//} else {
		//	
		//	//If there is no tertiary menu, then use another background image for the secondary menu to match background
		//	$('ul#secondary').css('background-image','url(css/images/navSecondaryBackgroundSingle.png)');
		//	
		//}
		
		//Remove right padding on last secondary menu item
		$('ul#secondary > li:last a').css('padding-right','0px');
		
		//Remove all text from secondary menu
		$('ul#secondary a').text('');
		
	}
);
