var diapos = { photos: [], index: 0 };

var diaporama = function() {
	var photo = diapos.photos[diapos.index++];
	diapos.index = diapos.index % diapos.photos.length;
	$('#photobox').html('<img src="/diaporama/photos/'+ photo.img + '"/> ');
	$('#infobulle').html(photo.text);
	$('#certif').html('<img src="/images/certif-'+ photo.certif + '.gif"> ');
}

$(function() {

	$.get('/diapos.php', {}, function(datas) {
		diapos.photos = datas;
		diaporama();
		setInterval(diaporama, 5000);
	}, 'json');

	//$('#expr_city').myAutoComplete('/cities');
	
/*	$('#text').val($('#default_value').val()
	).focus(function() {
		if(this.value == $('#default_value').val()) {
			this.value = '';
		}
	}).blur(function() {
		if(this.value == '') {
			this.value = $('#default_value').val();
		}
	}); */
	
	/*$('#post_submit').jqm({overlay: 0});
	
	$('#pre_submit').click(function() {
		if($('#expr_city').val() == '') {
			alert("Merci d'indiquer une ville");
			return false;
		}
	
		$('#post_submit').jqmShow();
	});*/
	
	//$('#express_search').myAjaxForm();
	
	
});
