	function goster(id){
	
	$("#vs-sol").html("<p align=center><img src='images/loading.gif' /></p>");
	
	
	jQuery.ajax({
		type: 'POST',
		url: 'inc/goster.php',
		data: 'id='+id,
			success:function(sonuc){
				$("#vs-sol").html(sonuc);
			}
	})
	
	}

	var a = 1;
	var b = 1;			
	var c = 1;
	var d = 1;
	function geri(neresi){
	
		if(neresi == "enyeniler"){
			
			a = a - 1;

			if(a < 1){
				a = 4;
			}
						
			$(".enyeniler").hide();
			
			$("#enyeniler"+a).show();
		
		}
		
		if(neresi == "enizlenenler"){
			
			b = b - 1;

			if(b < 1){
				b = 4;
			}
						
			$(".enizlenenler").hide();
			
			$("#enizlenenler"+b).show();
		
		}
		
		if(neresi == "enoylananlar"){
			
			c = c - 1;

			if(c < 1){
				c = 4;
			}
						
			$(".enoylananlar").hide();
			
			$("#enoylananlar"+c).show();
		
		}
		
		if(neresi == "rastgele"){
			
			d = d - 1;

			if(d < 1){
				d = 4;
			}
						
			$(".rastgele").hide();
			
			$("#rastgele"+d).show();
		
		}
		
	}
	
	function ileri(neresi){

		if(neresi == "enyeniler"){

			a = a + 1;
		
			if(a > 4){
				a = 1;
			}
						
			$(".enyeniler").hide();
			
			$("#enyeniler"+a).show();
			
		}

		if(neresi == "enizlenenler"){

			b = b + 1;
		
			if(b > 4){
				b = 1;
			}
						
			$(".enizlenenler").hide();
			
			$("#enizlenenler"+b).show();
			
		}
		
		if(neresi == "enoylananlar"){

			c = c + 1;
		
			if(c > 4){
				c = 1;
			}
						
			$(".enoylananlar").hide();
			
			$("#enoylananlar"+c).show();
					
		}
		
		if(neresi == "rastgele"){

			d = d + 1;
		
			if(d > 4){
				d = 1;
			}
						
			$(".rastgele").hide();
			
			$("#rastgele"+d).show();
					
		}			
	}
