if ($.blockUI)
	{
	$.blockUI.defaults.css.border = '3px solid #ED9D4B';
	}

	
function complete_cp(input_cp, input_ville)
	{
	$(input_cp).change(function ()
		{
		$.getJSON('/pro/autocomplete.php?type=localite&q='+$(this).val(),
			  function(json)
				{
				if (json.length>0)
					{
					$(input_ville).val(json[0].nom);
					}
				});
		});
	}

function get_id(iframe_or_window)
	{
	var w = iframe_or_window.tagName=='IFRAME' ? iframe_or_window.contentWindow : iframe_or_window;
	var elts = w.location.pathname.match('/(\\w+)($|\\?)');
	return elts[1];
	}

function activate_error_tips()
	{
	$('input.phormol_crud_form_error')
					   .change(function ()
						{
						$(this).next('span.phormol_crud_form_error').remove();
						$(this).prev('label').removeClass('phormol_crud_form_error');
						$(this).removeClass('phormol_crud_form_error');
						});
	}

$(document).ready(function ()
	{
	activate_error_tips();
	if ($('#index_pro').tabs)
	{//alert('ed');
	$('#index_pro').tabs();
	}
	if ($('#milieu_gauche_resultat').tabs)
	{//alert(milieu_gauche_resultat);
	$('#milieu_gauche_resultat').tabs();
	}
	if ($('#recherche').tabs)
	{//alert(recherche);
	$('#recherche').tabs();
	}
	if ($('#index_rech').tabs)
	{//alert(index_rech);
	$('#index_rech').tabs();
	}
	if ($('#acheter').tabs)
		{//alert(acheter);
		$('#acheter').tabs();
		}
	});
