$(document).ready(function(){
	$('#dial').dialog({
		autoOpen: false,
		bgiframe: true,
		resizable: true,
		height: 500,
		width: 700,
		modal: true, 
		buttons: {
			'Fermer': function() {
				$(this).html('<img src="./images/loading.gif" width="16" height="16" />');
				$(this).dialog('close');
			}
		}
	});
	$('.dialogue').click(function() {
		$('#dial')
		.load(this.href)
		.dialog('option', 'title', this.title);

		$('#dial')
		.dialog('open') ;
		return false;
	}) ;
	$("#ville").autocomplete("search.php", {
		width: 260,
		selectFirst: true
	});
	$("#ville").result(function(event, data, formatted) {
		$("#salle").val(data[1]);
	});

    $("#lg").change(function() {$("#select_lg").submit()}); 

});

