 $(document).ready(function(){

	$('#content a, .rightCol a').each(
		function(){
			if(this.href.indexOf(location.hostname) != -1 && this.href.match(/\.(doc|pdf|xls|ppt|rtf|txt)$/)) {
				$(this).bind("click", function(){
					var file_path = "";
					file_path = $(this).attr("href")
					file_path = file_path.substr(file_path.lastIndexOf("/"));
					pageTracker._trackPageview(file_path);		
				});                   
			}
		}
	);

});
