function centrePopup(url,largeur,hauteur) {
	  var gauche = (screen.width - largeur)/2
	  var haut =  (screen.height - hauteur)/2
	  return window.open(url,"","scrollbars=yes,width="+largeur+",height="+hauteur+",left="+gauche+",top="+haut)
	}

$(document).ready(function(){
    $('select.boxmoteur').sSelect();

    $("#encart_alouer").hide();

    $("#checkacheter").click(function() {
        $("#encart_alouer").hide();
        $("#encart_avendre").show();
    });

    $("#checklouer").click(function() {
        $("#encart_avendre").hide();
        $("#encart_alouer").show();
    });

		jQuery(".valide").validate();

		var loader = jQuery('<div id="loader"><img src="/media/images/loading.gif" alt="loading..." /><br />Envoi en cours</div>')
			.hide()
			.appendTo("#form");
		jQuery().ajaxStart(function() {
			loader.show();
		}).ajaxStop(function() {
			$("#loader").hide();
			$("#form").hide();
		}).ajaxError(function(a, b, e) {
			throw e;
		});

		var v = jQuery("#form").validate({
			submitHandler: function(form) {
				jQuery(form).ajaxSubmit({
					target: "#result"
				});
			}
		});

		$("#selection").newsTicker();

});


