// ╭━━━━━━━━━━━━━━━━━━━━━━━╯ ManoirAlleu.komodoproject ╰━━━━━━━━━━━━━━━━━━━━━━━━╮
//    
//    
//    
//    
//    
//    
//    Crée le 13/04/2011 10:58:38 par Yoann GUERIN.
//

var lien = "";
var titre = "";
$(function() {
	$.datepicker.setDefaults( $.datepicker.regional[ "fr" ] );	

	$('a[rel="lightbox"]').lightBox();
	$("#popup").dialog({
		autoOpen:false,
		width: 435,
		height: 490,
		open: function(e,ui){
			$("#popup").load(lien);
		},
		close: function(e,ui){
			$("#popup").html("");
		}
	});
	$('a[rel="popup"]').each(function(){
		$(this).attr("rel",$(this).attr("href")).removeAttr("href").click(kpopup);
	});
});

function kpopup() {
	lien = $(this).attr("rel");
	titre = $(this).attr("title");
	if (lien) {
		$("#popup").dialog({width:435, height:490});
		$("#popup").attr("title", titre);
		$("#ui-dialog-title-popup").html("<em>"+titre+"</em>");
		$("#popup").dialog("open");
	}
}

//
// ╰━━━━━━━━━━━━━┅┉┈  © KARIMBA-DESIGN | 2011 | www.karimba-design.fr  ┈┉┅━━━━━━━━━━━━━╯
