$('.my-gallery').click(function(){
$('header').slideUp("slow");
});
// Gallery starts closing
pswp.listen('close', function() {
$('header').slideDown("slow");
});
var delay = 1000,
setTimeoutConst;
$("body").on("mousemove click", function() {
clearTimeout(setTimeoutConst);
$('.test').fadeIn();
setTimeoutConst = setTimeout(function() {
$('.test').fadeOut();
}, delay);
});
var url;
$('iframe').contents().find('.uploadfile').on('click', function() {
url = $(this).attr('href');
});
$('.slider_url_image input').on('click', function() {
$(this).val(url);
});