function addRating(id, type){
	$("#Rating").fadeOut('fast', function() {
			$("#Rating").html('<img src="Templates/Images/loading.gif" alt="" style="vertical-align: middle; padding-right: 5px;">');
		$("#Rating").fadeIn("slow", function() {

		$.post("Extras/rating.html", { id: id, type: type },
			function(data) {
				$("#Rating").fadeOut('fast', function() {
					$("#Rating").html(data);
					$("#Rating").fadeIn("fast");
				});
   			});
		});
	});
}

function SaveJob(id){
	$("#Save_Job_" + id).fadeOut('fast', function() {
			$("#Save_Job_" + id).html('<img src="Templates/Images/loading.gif" alt="" style="vertical-align: middle; padding-right: 5px;">');
		$("#Save_Job_" + id).fadeIn("slow", function() {

		$.post("Extras/save_job.html", { id: id},
			function(data) {
				$("#Save_Job_" + id).fadeOut('fast', function() {
					$("#Save_Job_" + id).html(data);
					$("#Save_Job_" + id).fadeIn("slow");
				});
   			});
		});
	});
}
function RemoveJob(id){
	$("#Save_Job_" + id).fadeOut('fast', function() {
			$("#Save_Job_" + id).html('<img src="Templates/Images/loading.gif" alt="" style="vertical-align: middle; padding-right: 5px;">');
		$("#Save_Job_" + id).fadeIn("slow", function() {

		$.post("Extras/save_job.html", { id: id, remove: 1},
			function(data) {
				$("#Save_Job_" + id).fadeOut('fast', function() {
					$("#Save_Job_" + id).html(data);
					$("#Save_Job_" + id).fadeIn("slow");
				});
   			});
		});
	});
}
