// JavaScript Document
$(document).ready(function() {
						   
	// generic ajax link and hide
	$('a.ajax').click(function(){
		$.getJSON(this.href, function(data){
		  if (data.Result == "error") {
				alert(data.Message);  
		  }
		});
		$(this).parent().hide("slow");
		return false;
	});
	
	// ajax flag
	$('a.flag').click(function(){
		$.getJSON(this.href, function(data){
		  console.log(data);
		});
		$(this).fadeOut("slow");
		return false;
	}).attr('title','Flag as inappropriate');
	
});