$(document).ready(function()
{
$("#resim :file").on('change', function()
{
var input = $(this).parents('.input-group').find(':text');
input.val($(this).val());
});
$("a[data-rel='PhotoGallery1']").attr('rel', 'PhotoGallery1');
$("#PhotoGallery1").magnificPopup({delegate:'a', type:'image10', gallery: {enabled: true, navigateByImgClick: true}});
});