// JavaScript Document
jQuery(document).ready(function($){
	$(".open_modal_wall").click(function(){
		var parent = $(this);
		var href = parent.attr('href');
		
		parent.removeAttr('href');
		var wallpaper= "<img src=\""+href+"\" width=\"1024\" />";
		$("#modalbox_wall").html(wallpaper);
		
		$("#modalbox_wall").dialog({
			modal: true,
			buttons: { 
						"Fermer": function() {
								$(this).dialog("destroy");
								parent.attr('href', href);
							} 
					},
			width: 1100,
			height: 860,
			resizable: false,
			draggable: false,
			dialogClass: 'perso'
		});
	});
});

