﻿function submitSearchForm(form, libelle, type, action)
{
  var $typeInput = jQuery("form#"+form).find("input#type-recherche");
  $typeInput.val(type);
  if(action != '')
    jQuery("form#"+form).attr('action',action);
  
  jQuery("div.recherche_form").find('.libelle-affiche-results').html(libelle);
  jQuery("div.recherche_form").find('.libelle-affiche-results').addClass('loading');
  
  //décalage des ombres
  var height2 = jQuery('.footer').offset().top - jQuery('.ombre-left').offset().top;
  //alert('with height() : '+height1+'   //    with offset() : '+height2);
  jQuery('.page-inner .ombre').css('height',height2);
  jQuery('.page-inner .ombre .ombre-wrapper').css('height',height2-120);
  
	window.setTimeout(function() { jQuery("form#"+form).submit(); }, 100);
}
