/*if (top.location != self.location) top.location.replace(self.location);*/
urlweb = "http://www.boobaan.fr/";

function cleancut(title)
{
    var word=title.split(' ');
    var limit = 24;
    title = '';
    
    for (var i=0; i<word.length; i++)
    {
        title += word[i] + ' ';
        if((i+1 != word.length) && (title.length + word[i+1].length) > limit) {
            title += '<br />';
            limit = limit*2+6;
        } 
    }
    return title;
}

$(document).ready(function(){
  //$(".titre a").each( function() { $(this).html(cleancut($(this).html())); } );
  
  //FLIR.init( { path: urlweb+'wp-content/themes/Boobaan/js/facelift/' } ); 
  //$(".titre a").each( function() { FLIR.replace(this); } );
  //$(".dateart").each( function() { FLIR.replace(this); } );  
 
  //---Recherche------
  var search = $("#s").val();
  $("#s").focus(function(){
      $("#s").attr("value", '');
  });
  
  $("#m-loupe").click(function(){
    $("#s").attr("value", "");
     $("#s").focus();
  });
  
  $("#s").blur(function(){
    if($.trim($("#s").attr("value")) == "")
    {
      $("#s").attr("value", search);
    }
  });
  //---Fin Recherche------ 
});      
