jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}
$(document).ready(function(){	
	$('#gobutton').click( function(){
		$("#iframe").attr("src",$('#shoplist').val());
		//window.location.href=$('#shoplist').val();
		//alert('wqer');

	});
});
    function ReloadGallery(idArticle,idDocument) {
        $("#ajax").load("/spip.php?page=inc_gallery&id_article="+idArticle+"&id_document="+idDocument);
    }
