function vote( vote_type, discount_id ) {

	$(document).ready(function(){
		
		$.ajax({
		   type: "POST",
		   url: "../../scripts/voting.php",
		   data: "vote="+vote_type+"&discount="+discount_id,
		   success: function(msg){
			   alert( msg );
		   }
		 });

	});

}
