			/* RECORD CLICKS - KYLE DE FRANCO, 2009_10_14 */
				$(document).ready(
					function(){
						$("a").click(
							function(event) {
								$.post("_scripts/jquery_clicktracker.php", {url: this.href});
							}
						);
					}
				);