$(document).ready(function() {
	//FLOORPLANS - Process subnav commands
	function setSubMenuPosition(position) {
		$sectionElement = $("ul#fp-navigation li a").filter(":eq(" + position + ")");
		$sectionElement.addClass("on");
	};
	
	//Assign Google Analytics tracking code to file downloads
	$("a").each(function() {
		var $a = $(this);
		var href = $a.attr("href");				  
		if (href != "" && href != null && href != undefined) {				    					
			if (href.match(/\.(?:pdf|doc|xls|zip|rar)($|\&|\?)/)) {											
				$a.click(function() {				
				    pageTracker._trackPageview('/DOWNLOAD:' + href);
				});					
			}
		}				 
	});

});