function add_fav(num) {
	$.get("http://www.thefreeway.com/index.php/myaccount/add_favorite/"+num, { S: "0"});
	$("span#fav-link"+num).html("<img src='http://www.thefreeway.com/images/fw_images/added_favorites.png' alt='Added to Favorites' />");
}

function del_fav(num) {
	$.get("http://www.thefreeway.com/index.php/myaccount/add_favorite/"+num+"/delete/", { S: "0"});
	$("#fav"+num).remove();
}

