
	function addFav(postID)
	{
		$.get("addfav.php", { postID: postID , js: "true" },
			function(resp)
			{
				if ( resp == "done" )
				{	 
					 $("#post"+postID+"favlink").fadeOut(200);
					 
					 $("#post"+postID+"favlink").html('<a href="removefav.php?postID='+postID+'" onclick="javascript:removeFav('+postID+'); return false;"><img src="images/purpleheart.png" alt="Remove Favourite" title="Remove From Favourite Posts" /></a>');
					 
					 $("#post"+postID+"favlink").fadeIn(200);
					 
					 //alert("Post "+postID+" was added to your favourites.");
				}
				else { alert(resp); }
			}
		);
	}
	
	
	function removeFav(postID)
	{
		
		$.get("removefav.php", { postID: postID , js: "true" },
			function(resp)
			{
				if ( resp == "done" )
				{
					
					$("#post"+postID+"favlink").fadeOut(200);
						 
					$("#post"+postID+"favlink").html('<a href="addfav.php?postID='+postID+'" onclick="javascript:addFav('+postID+'); return false;"><img src="images/add_to_favorites.png" alt="Add Favourite" title="Add To Favourite Posts" /></a>');
						 
					$("#post"+postID+"favlink").fadeIn(200);
					
					if ( favspage ) { $("#post"+postID).fadeOut(1000); }
					 
					 //alert("Post "+postID+" was added to your favourites.");
				}
				else { alert(resp); }
			}
		);
	}
