$(document).ready(function() { 
		$("img").click(function() {
			var source = $(this).attr("src");
			$.post("clickedImage.php", {img: source});
			//return false;
		});
	}
);