function trackAssetDownloads()

{

	$("a").each(function(){

		myHref = ($(this).attr("href")) ? $(this).attr("href") : "";

		if (myHref.toLowerCase().indexOf(".pdf") != -1 || myHref.toLowerCase().indexOf(".zip") != -1 || myHref.toLowerCase().indexOf(".doc") != -1 || myHref.toLowerCase().indexOf(".xls") != -1)

		{

			$(this).click(function(evt){

				var getFileName = $(this).attr("href").split("/").reverse()[0];

				

				pageTracker._trackPageview( 'File: ' + getFileName );

			});

		}

	});

}

trackAssetDownloads();