function setRanking(productID){
	ranking = $('input[name=ranking_' + productID + ']:checked').val();
	note = $("#note_" + productID).val();
	$("#link_indicator_" + productID).show();
	$.post("/assets/setRanking.cfm", {productID: productID, ranking: ranking, note: note}, 
		function(data){
			$("#link_indicator_" + productID).hide();
  		}	
	);
}
function showRankingNote(productID){
	$('#link_note_' + productID).hide();
	$('#link_' + productID).show();
	$('#rankingnotes_label_' + productID).show();
	$('#rankingnotes_field_' + productID).show();
}
function hideRankingNote(productID){
	$('#rankingnotes_label_' + productID).hide();
	$('#rankingnotes_field_' + productID).hide();
	
	$('#link_' + productID).hide();
	$('#rankingnotes_saved_' + productID).fadeIn("slow", function ()
	{
		$(this).animate({opacity: 1.0}, 1500).fadeOut("slow", function ()
		{
			$('#link_note_' + productID).fadeIn("slow");
		});
	});
}
