///up
/*
say input
eleman div ve isaretciler
*/
	function yukari(say,eleman,top){
		var kac = document.getElementById(say).value;
		if(kac == top){return false;}
		else{
		$('#'+ eleman + kac).slideUp('normal');
		document.getElementById(say).value++;
		}
	}
	function asagi(say,eleman,top){
	var kac = document.getElementById(say).value;
	if(kac <= 1){return false;}
	else{kac--;
		$('#'+ eleman + kac).slideDown('normal');
		document.getElementById(say).value = kac;
		}
	}	
		
	function vtndurum(say,eleman,top){
	var kac = document.getElementById(say).value;
		if(kac == top){vtyol = 1;}
		if(kac <= 1){vtyol = 2;}
		if(kac < 1){
			$('#'+eleman+'up').click(function(){yukari(say,eleman,top)});
			$('#'+eleman+'down').click(function(){asagi(say,eleman,top)});
		}
		if(vtyol == 2){yukari(say,eleman,top);} else{asagi(say,eleman,top);}
	}	

	
//left
