	var myLayout; // a var is required because this page utilizes: myLayout.allowOverflow() method
	$(document).ready(function () {
		if ( $('#panels-layout').length > 0 ) {
			$('#panels-layout').height($('#panelLeft-ui').height()+12);
			if ($('#panelRight-ui').height() > $('#panelLeft-ui').height()) {
				$('#panels-layout').height($('#panelRight-ui').height()+12);
			}
			var westSize = $('#panelLeft-ui').width();
			myLayout = $('#panels-layout').layout({
				west__size: westSize,
				west__onresize: function () {
					var newSize = Math.round($('#panelLeft-ui').width() * 100 / $('#panels-layout').width());
				}
		,
				resizerTip: "Redimensionner",
				togglerTip_open: "Fermer",
				togglerTip_closed: "Ouvrir"

			});
		}
 	});

