// **************************************  
//		Google Analytics TRACKING CODE 
//
//
//
//     This should be included on all site pages
//     Created by GHS 7/11
//
//
//
// **************************************


jQuery("a").click(function(e) {
	var fileExt = this.href.split("/").pop().split(".").pop();
	
	if ((fileExt == 'pdf') || (fileExt == 'doc') || (fileExt == 'docx') ||(fileExt == 'ppt') || (fileExt == 'pptx')  || (fileExt == 'xls') || (fileExt == 'xlsx') ) {
		filePathArray = this.href.split("/");
		newFilePath = '';
		jQuery.each(filePathArray, function(index, value) {
			if (index > 2) {
				newFilePath = newFilePath + "/" + value;
			} 
		});
		_gaq.push(['_trackEvent', 'Documents', 'View', newFilePath]);
	}
});
