	$(document).ready(function(){
	$('#yukle').bind('click',dosyaindir);
	});
	
	function dosyaindir(){
		var deger  = document.getElementById('yid').value;
		$('#down').slideDown('normal');
		$('#down').html('<img src="images/loading.gif" alt="Bekleyin..." />');
		var sc = "deger="+deger;
		$.ajax({type: 'POST', url: 'dosyajs.php', data: sc, success: function(fupl) {$('#down').html(fupl);}});
	}
