//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){

	$("#shortvoting").show('fast');
	
	$("#vote_save").live('click',function(){
	
		var vote_action = $("#vote_action").val();
		var uID = $("#vote_uID").val();
		var hspID = $("#vote_hspID").val();
		var vote = $("#vote_wertung").val();
		
		$.ajax({
				type: 'get',
				url: 'http://www.hoerspiel3.de/u/vote.php',
				data: 'ajax=1&action='+vote_action+'&uID='+uID+'&hspID='+hspID+'&vote='+vote+'',
				beforeSend: function() {
					$("#vote_ajax_result").html("<img src='http://www.hoerspiel3.de/images/loading.gif'>");
				},
				success: function(msg) {
					$("#vote_ajax_result").html("Bewertung gespeichert. (<a class='link' id='vote_save'>Änderungen speichern</a>)");
					$("#wrap_vote_action").html("<input type='hidden' name='action' id='vote_action' value='edit'>");
					$.ajax({
						type: 'get',
						url: 'http://www.hoerspiel3.de/u/vote.php',
						data: 'ajax=1&action=actvote&hspID='+hspID+'',
						beforeSend: function() {
							$("#actual_vote").html("<img src='http://www.hoerspiel3.de/images/loading.gif'>");
						},
						success: function(msg2) {
							$("#actual_vote").html(msg2);
						}
					});

				}
		});
		
		
	});



}); // end jquery

