//v1.1, includes mp3s

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 || myHref.toLowerCase().indexOf(".mp3") != -1)
		{
			$(this).click(function(evt) {
				var getFileName = $(this).attr("href").split("/").reverse()[0];
				pageTracker._trackPageview( 'FILE: ' + getFileName );
			});
		}
	});
}

$(function() {
    trackAssetDownloads();
});
